import type { ValueOf } from '../utils/ValueOf.js'; import { UTF_16 } from './UTF_16.js'; import { UTF_8 } from './UTF_8.js'; /** * Text encoding types. * * @group Utils * * @beta */ export declare const Encoding: { readonly UTF8: typeof UTF_8; readonly UTF16: typeof UTF_16; }; /** * Text encoding types. * * @group Utils * * @beta */ export type Encoding = ValueOf; //# sourceMappingURL=Encoding.d.ts.map