import * as React from "react"; import { Direction } from "../../dropdownable/components/Dropdownable"; export interface PopoverProps extends React.HTMLProps { children: React.ReactNode; direction?: Direction; maxHeight?: React.CSSProperties["maxHeight"]; maxWidth?: React.CSSProperties["maxWidth"]; menuRef?: React.RefObject; showPointerCaret?: boolean; width?: React.CSSProperties["width"]; } declare const Popover: (props: PopoverProps) => JSX.Element; export default Popover;