export declare class ScreenshotOptimizer {
    private static readonly MAX_SIZE_BYTES;
    private static readonly MAX_DIMENSION;
    private static readonly TARGET_SIZE_BYTES;
    static optimizeScreenshot(buffer: Buffer, fullPage: boolean): Promise<{
        buffer: Buffer;
        mimeType: string;
        wasOptimized: boolean;
        originalSize: number;
        optimizedSize: number;
    }>;
}
//# sourceMappingURL=screenshot-optimizer.d.ts.map