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.

16 lines
458 B
TypeScript

import { PolymorphicComponent } from '../utils';
import { PopperTypeMap } from './Popper.types';
/**
* Poppers rely on the 3rd party library [Popper.js](https://popper.js.org/docs/v2/) for positioning.
*
* Demos:
*
* - [Popper](https://mui.com/base-ui/react-popper/)
*
* API:
*
* - [Popper API](https://mui.com/base-ui/react-popper/components-api/#popper)
*/
declare const Popper: PolymorphicComponent<PopperTypeMap<{}, "div">>;
export { Popper };