export declare function verifyQueryParam(name: string, req: any): string; export declare function verifyBodyParam(name: string, req: any): string; export declare function sleep(timeMS: number): Promise; export declare function asyncHandler(self: SelfT, handlerName: string, handler: Function): (...args: any[]) => any; export declare function retry(operation: () => Promise, maxAttempts: number, waitTimeMS: number): Promise;