import type { jsPDF } from 'jspdf';
import type { Options } from '../types';
declare function getPageData({ canvas, pdf, pdfContentWidth, opts }: {
    canvas: HTMLCanvasElement;
    pdf: jsPDF;
    pdfContentWidth: number;
    opts: Options;
}): {
    pageData: string;
    printWidth: number;
    printHeight: number;
};
export default getPageData;
