import { PopperProps as MuiPopperProps } from '@material-ui/core'; import { ReactNode } from 'react'; type PopperProps = Omit & { /** * Contents of the popover */ children: ReactNode; open: boolean; /** * Defines an HTML node to which the content will be positioned */ anchorEl: HTMLElement | (() => HTMLElement); /** * Defines placement * @default bottom */ placement?: 'bottom-end' | 'bottom-start' | 'bottom' | 'left-end' | 'left-start' | 'left' | 'right-end' | 'right-start' | 'right' | 'top-end' | 'top-start' | 'top'; }; export declare function Popper(props: PopperProps): JSX.Element; export {}; //# sourceMappingURL=Popper.d.ts.map