import type { ExportSettings } from '@zakodium/nmrium-core'; import type { ReactNode } from 'react'; export interface BaseExportProps { onExportOptionsChange: (options: ExportSettings) => void; defaultExportOptions?: ExportSettings; } interface RenderSizeOption { width: number; minWidth?: number; preserveAspectRatio?: boolean; } interface BaseExportFrameProps { children: ReactNode; onExportReady: (documentElement: HTMLElement, options: ExportSettings) => void; renderOptions: RenderSizeOption; } interface ExportFrameProps extends BaseExportFrameProps, Partial { exportOptions?: ExportSettings; onExportDialogClose?: () => void; confirmButtonText?: string; } export declare function ExportContent(props: ExportFrameProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ExportContent.d.ts.map