import StreamCompressor from './streamCompressor.js';
export default class DeflateCompressor extends StreamCompressor {
get id(): string;
protected get algorithm(): CompressionFormat;
compress(input: string): Promise<string>;
decompress(input: string): Promise<string>;
}