type PDFPrintOptions = {
    orientation?: string;
    scale?: number;
    background?: boolean;
    width?: number;
    height?: number;
    top?: number;
    bottom?: number;
    left?: number;
    right?: number;
    shrinkToFit?: boolean;
    pageRanges?: Array<string | number>;
};
/**
 * Command implementation of the `savePDF` command.
 */
export declare function savePDF(this: WebdriverIO.Browser, filepath: string, options?: PDFPrintOptions): Promise<Buffer<ArrayBuffer>>;
export {};
//# sourceMappingURL=savePDF.d.ts.map