import type { ConnectorInfo, PdfConnector, PdfOptions } from './types.js';
export declare class SystemChromeConnector implements PdfConnector {
    private readonly runtimePlatform;
    readonly name = "system-chrome";
    private detectedExecutablePath;
    constructor(runtimePlatform?: NodeJS.Platform);
    private detectExecutablePath;
    isAvailable(): Promise<boolean>;
    private withPageCss;
    generatePdf(html: string, outputPath: string, options: PdfOptions): Promise<void>;
    getInfo(): Promise<ConnectorInfo>;
}
//# sourceMappingURL=system-chrome-connector.d.ts.map