/** * @constructor * @param {string=} label The label of the encoding; * defaults to 'utf-8'. * @param {Object=} options */ declare function TextDecoder(label: any, options: any): any; /** * @constructor * @param {string=} label The label of the encoding. NONSTANDARD. * @param {Object=} options NONSTANDARD. */ declare function TextEncoder(label: any, options: any): any; export { TextEncoder, TextDecoder }; //# sourceMappingURL=text-encoder.d.ts.map