import { ILogger } from "./ILogger"; export declare class Utils { static Delay(ms: number, logger?: ILogger): Promise; /** * Gets a deterministic build string based on the machine's hostname. * This will be consistent for the same machine across reboots. */ static getXUserAgentBuildString(): string; }