export declare function isHex(hex: string): boolean;
export declare const splitStringByLength: ({ str, length }: {
    str: string;
    length: number;
}) => string[];
export declare function strInsert(str: string): string;
export declare function msgHexToText(hex: string): string;
