import * as React from 'react'; import { jsPDF as JsPDF } from 'jspdf'; import { IFunctionBaseWindowToolProps } from '../BaseWindowTool'; export interface IPrintContentProps extends IFunctionBaseWindowToolProps { onPrintStart?: () => void; onPrintEnd?: (pdf?: JsPDF) => void; } export declare const defaultPrintEnd: (pdf?: JsPDF) => void; export declare function PrintContent(props: IPrintContentProps): React.JSX.Element;