export declare class DecoderHelper {
    static decode(str: string, codePage: number): string;
    static getChars(bytes: string[], codePage: number): string[];
}
