declare const utf8: {
    encode(str: string): string;
    decode(str: string, safe?: boolean): string;
};

export = utf8;
