import { PopoverDFSize } from './types'; type PopoverDFContextValue = { onClose: (() => void) | null; size: PopoverDFSize; }; export declare const PopoverDFContext: import('react').Context; export declare const usePopoverDFContext: () => PopoverDFContextValue; export {};