import { ObjectS } from './types'; export declare const delay: (ms: number) => Promise; export declare const trace: (x: any, msg?: string) => any; export declare const stringify: (x: any) => string; export declare const stripPortFromUrl: (url: any) => any; export declare function promiseSerialArray(promises: Array>): Promise>; export declare function promiseSerialObject(promises: ObjectS>): Promise>; /** @deprecated */ export declare const downloadFile: ({ url, path, overwrite }: { url: string; path: string; overwrite?: boolean | undefined; }) => Promise;