/// /** * Popover is a non-modal dialog that floats around a trigger. It is used to display contextual information to the user, and should be paired with a clickable trigger element. * * Popover is built on top of the Popper.js library. * * Popover: The wrapper that provides props, state, and context to its children. * PopoverTrigger: Used to wrap the reference (or trigger) element. * PopoverContent: The popover itself. * PopoverHeader: The header of the popover. * PopoverBody: The body of the popover. * PopoverArrow: A visual arrow that points to the reference (or trigger). * PopoverCloseButton: A button to close the popover. * See docs: https://chakra-ui.com/docs/overlay/popover */ export declare function Popover({ ...props }: any): JSX.Element; export declare function PopoverTrigger({ ...props }: any): JSX.Element; export declare function PopoverContent({ ...props }: any): JSX.Element; export declare function PopoverHeader({ ...props }: any): JSX.Element; export declare function PopoverBody({ ...props }: any): JSX.Element; export declare function PopoverFooter({ ...props }: any): JSX.Element; export declare function PopoverArrow({ ...props }: any): JSX.Element; export declare function PopoverCloseButton({ ...props }: any): JSX.Element; //# sourceMappingURL=Popover.d.ts.map