interface TextDecoderOptions { fatal?: boolean; ignoreBOM?: boolean; } interface TextDecodeOptions { stream?: boolean; } export default class TextDecoder { private encoding; private fatal; private ignoreBOM; constructor(label?: string, options?: TextDecoderOptions); decode(input?: Uint8Array, options?: TextDecodeOptions): string; } export {}; //# sourceMappingURL=text-decoder.d.ts.map