/** * * @param api * @param path * @returns Promise */ export declare const Request: (api: string, path?: string) => Promise; export declare const WrapperRequest: (url: string) => Promise; /** * */ export declare const PromiseQueue: (data: any[], fn: { (value: any): Promise; (i: any): Promise<{ [x: number]: any; }>; (arg0: any): void; }, delayMS: number) => Promise;