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