/**
 * This method is supposed to check if an address is conforming to EIP-55.
 * @param address Address to be checked if conforms with EIP-55.
 * @returns Either the return is or not in the EIP-55 format.
 */
export declare const isEIP55Address: (address: string) => boolean;
export declare const parseIntegerNumber: (number: string) => number;
