import { IExporter } from './IExporter.cjs';

declare class PdfExporter implements IExporter {
    private templatePath;
    constructor(templatePath: string);
    write(reportPath: string, data: any, opts?: any): Promise<void>;
    toBuffer(data: any, opts?: any): Promise<Buffer>;
    private genTemplate;
    streamTo(...args: any[]): void;
}

export { PdfExporter };
