You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
428 B
TypeScript
15 lines
428 B
TypeScript
import * as React from 'react';
|
|
import { PopupProps } from './Popup.types';
|
|
/**
|
|
*
|
|
* Demos:
|
|
*
|
|
* - [Popup](https://mui.com/base-ui/react-popup/)
|
|
*
|
|
* API:
|
|
*
|
|
* - [Popup API](https://mui.com/base-ui/react-popup/components-api/#popup)
|
|
*/
|
|
declare const Popup: React.ForwardRefExoticComponent<Omit<PopupProps<React.ElementType<any, keyof React.JSX.IntrinsicElements>>, "ref"> & React.RefAttributes<Element>>;
|
|
export { Popup };
|