import React from 'react'; export type PopoverConfig = { disableItemsAutoClose: boolean; onItemClick: (e: React.MouseEvent) => void; }; export declare const PopoverContext: React.Context; export declare const usePopoverContext: () => PopoverConfig;