/// export declare type Address = string; export declare const eqAddress: (a: Address, b: Address) => boolean; export declare const normalizeAddress: (a: Address) => string; export declare const isNullAddress: (a: Address) => boolean; export declare const normalizeAddressWith0x: (a: Address) => string; export declare const trimLeading0x: (input: string) => string; export declare const ensureLeading0x: (input: string) => string; export declare const getAddressChunks: (input: string) => string[]; export declare const isHexString: (input: string) => boolean; export declare const hexToBuffer: (input: string) => Buffer; export declare const bufferToHex: (buf: Buffer) => string; export declare const NULL_ADDRESS = "0x0000000000000000000000000000000000000000"; export declare const findAddressIndex: (address: Address, addresses: Address[]) => number; export declare const mapAddressListOnto: (oldAddress: Address[], newAddress: Address[]) => any[]; export declare function mapAddressListDataOnto(data: T[], oldAddress: Address[], newAddress: Address[], initialValue: T): T[];