import type { SatelliteConfig } from '@junobuild/config'; export declare const gunzipFile: ({ source }: { source: Buffer; }) => Promise; interface CompressedFile { source: string; compressed: string; mode: 'both' | 'replace'; } export declare const compressFiles: ({ sourceFiles, precompress }: { sourceFiles: string[]; } & Required>) => Promise; export declare const gzipFile: (params: { source: string; destination?: string; }) => Promise; export declare const brotliFile: (params: { source: string; destination?: string; }) => Promise; export declare const isGzip: (buffer: Buffer) => boolean; export {};