import { type Charset, type CharsetDecoderOptions, type CharsetEncodeOptions, type CharsetEncoder, type CharsetEncoderOptions, StandardDecoder } from "./charset.ts";
declare class Utf16beCharset implements Charset {
    get name(): string;
    createDecoder(options?: CharsetDecoderOptions): StandardDecoder;
    createEncoder(options?: CharsetEncoderOptions): Utf16beEncoder;
    isUnicode(): boolean;
    isEbcdic(): boolean;
}
declare class Utf16beEncoder implements CharsetEncoder {
    canEncode(str: string): boolean;
    encode(str: string, options?: CharsetEncodeOptions): Uint8Array;
}
export declare const utf16be: Utf16beCharset;
export {};
//# sourceMappingURL=utf16be.d.ts.map