import { ReactNode } from 'react'; declare type PopoverProps = { children: ReactNode[]; side?: 'top' | 'right' | 'bottom' | 'left'; align?: 'start' | 'center' | 'end'; }; export declare function Popover({ children, side, align, }: PopoverProps): JSX.Element; export {};