export declare function wrapValidator(validator: (...args: any[]) => boolean | Promise<any>, async: boolean): (...args: any[]) => boolean | Promise<any> | "undefined";
export declare function allPromiseFinish(promiseList: Promise<any>[]): Promise<unknown>;