import { PopupDFSize } from './types'; type PopupDFContextValue = { onClose: (() => void) | null; size: PopupDFSize; }; export declare const PopupDFContext: import('react').Context; export declare const usePopupDFContext: () => PopupDFContextValue; export {};