/// export declare function sleep(ms: number): Promise; export declare abstract class WrappingError extends Error { readonly cause?: Error; protected constructor(message: string, cause?: Error); get name(): string; } export declare type Type = { new (...args: never[]): T; }; export declare function bufferToUuid(buffer: Buffer): string; export declare function getMethods(obj: T): string[]; export declare function listFilesRecursively(dir: string): Promise; export declare function doesFileExist(file: string): Promise;