import { PopoverAlignment } from './popover.types';
export interface PopoverProps {
    anchorRef: React.RefObject<HTMLElement | null>;
    display: boolean;
    children?: React.ReactNode;
    alignment?: PopoverAlignment;
    onClickOutside?: () => void;
    popoverContainerStyle?: React.CSSProperties;
}
declare const _default: import('react').ForwardRefExoticComponent<Pick<PopoverProps, keyof PopoverProps> & {
    theme?: import('@emotion/react').Theme;
}>;
export default _default;
//# sourceMappingURL=Popover.d.ts.map