import type { PrintPageOptions } from '@zakodium/nmrium-core'; import type { ReactNode } from 'react'; interface BasePrintProps { onPrint: (options: PrintPageOptions) => void; defaultPrintPageOptions: Partial; } interface InnerPrintFrameProps { children: ReactNode; onAfterPrint?: () => void; onBeforePrint?: () => void; printPageOptions?: Partial; } interface PrintFrameProps extends InnerPrintFrameProps, Partial { } export declare function PrintContent(props: PrintFrameProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=PrintContent.d.ts.map