/** * Should be called to get ascii from it's hex representation */ export declare function toAscii(hex: string): string; /** * Should be called to get hex representation (prefixed by 0x) of ascii string */ export declare function fromAscii(str: string, num: number): string;