UNPKG

456 BTypeScriptView Raw
1import { PolymorphicComponent } from '../utils';
2import { PopperTypeMap } from './Popper.types';
3/**
4 * Poppers rely on the 3rd party library [Popper.js](https://popper.js.org/docs/v2/) for positioning.
5 *
6 * Demos:
7 *
8 * - [Popper](https://mui.com/base/react-popper/)
9 *
10 * API:
11 *
12 * - [Popper API](https://mui.com/base/react-popper/components-api/#popper)
13 */
14declare const Popper: PolymorphicComponent<PopperTypeMap<{}, "div">>;
15export default Popper;