export declare const toLocalTime: (date: Date) => String; export declare function snooze(ms: number): Promise; type AsyncFunction = () => Promise; export declare function asyncWaterfall(asyncFuncs: AsyncFunction[], timeoutMs?: number): Promise; export declare const shuffleArray: (array: T[]) => T[]; export declare const validateEmail: (email: string) => RegExpMatchArray | null; export {};