export declare const sleep: (ms: number) => Promise; export declare const retry: (fn: () => Promise, retries?: number, delay?: number) => Promise; export declare const chunk: (array: T[], size: number) => T[][]; export declare const unique: (array: T[]) => T[]; export declare const flatten: (array: T[][]) => T[]; export declare const isValidAddress: (address: string) => boolean; export declare const isValidAmount: (amount: string) => boolean; export declare const isValidPermlink: (permlink: string) => boolean; export { debug } from './debug';