import type { ConnectorInfo, PdfConnector, PdfOptions } from './types.js';
export declare class PuppeteerConnector implements PdfConnector {
    readonly name = "puppeteer";
    isAvailable(): Promise<boolean>;
    generatePdf(html: string, outputPath: string, options: PdfOptions): Promise<void>;
    getInfo(): Promise<ConnectorInfo>;
}
//# sourceMappingURL=puppeteer-connector.d.ts.map