///
export declare function sleep(ms: number): Promise;
export interface batchPromisesItem {
id: string;
execute: Promise;
}
export declare function batchPromises(promises: batchPromisesItem[], maxRetryCount?: number): Promise;
export declare function equals(val1: T, val2: U, ignoreCase?: boolean): boolean;
export declare function oldMarketConvertScanChainConfig(makerList: Array): import("lodash").Dictionary<{
intranetId: string;
address: string;
}[]>;
export declare function fix0xPadStartAddress(address: string, length: number): string;
export declare function isObject(obj: any): boolean;
export declare function isString(obj: any): boolean;
export declare function isFunction(obj: any): boolean;
export declare function isNumberString(obj: any): boolean;
export declare function isNumber(obj: any): boolean;
export declare function isBoolean(obj: any): boolean;
export declare function isEmpty(obj: any): boolean;
export { groupBy, orderBy, maxBy, uniqBy, padStart, flatten, uniq, } from "lodash";