export declare function padToEven(value: string): string; export declare function isHexPrefixed(str: string): boolean; /** * Removes '0x' from a given `String` if present * @param str the string value * @returns the string without 0x prefix */ export declare const stripHexPrefix: (str: string) => string;