import type { ReactNode } from 'react'; interface ExportSettingsContextProps { width: number; height: number; exportWidth?: number; exportHeight?: number; } export declare function useExportSettings(): Required | null; interface ExportSettingsProviderProps extends ExportSettingsContextProps { children: ReactNode; } export declare function ExportSettingsProvider(props: ExportSettingsProviderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ExportSettingsProvider.d.ts.map