export declare const getEnv: (name: string) => string; export interface RetryOptions { readonly attempts: number; readonly sleep: number; } export declare function withRetries, B>(options: RetryOptions, fn: (...xs: A) => Promise): (...xs: A) => Promise; export declare const log: (msg: string, ...other: any[]) => void; //# sourceMappingURL=util.d.ts.map