///
export declare const POPOVER_PADDINGS: readonly ["sm", "md", "lg"];
export declare type PopoverPadding = typeof POPOVER_PADDINGS[number];
export declare const POPOVER_TRIGGER_TYPE: readonly ["click", "hover"];
export declare type PopoverTriggerType = typeof POPOVER_TRIGGER_TYPE[number];
export declare type PopoverContext = {
open: boolean;
onOpen: () => void;
onClose: () => void;
padding: PopoverPadding;
};
export declare const PopoverContext: import("react").Context;
export declare const usePopover: () => PopoverContext;