import { PdfPopplerConfig, Platform } from './types'; export declare class PdfPopplerConfigBuilder { private config; withOsBinary(): this; withBinaryPath(binaryPath: string): this; withBinaryPackage(packageName: string): this; withPreferXvfb(prefer?: boolean): this; withVersion(version: string): this; withPlatform(platform: Platform): this; withLambda(isLambda?: boolean): this; withCI(isCI?: boolean): this; withEnv(env: NodeJS.ProcessEnv): this; withMaxBuffer(bytes: number): this; withTimeout(ms: number): this; withExecOptions(options: PdfPopplerConfig['execOptions']): this; build(): PdfPopplerConfig; } export declare function configure(): PdfPopplerConfigBuilder;