/** * Returns a Promise that resolves after the specified number of milliseconds. * Optionally resolves with the provided value. * * @param ms - The number of milliseconds to wait before resolving. * @param value - An optional value to resolve the Promise with. * @returns A Promise that resolves after the specified delay. */ export declare function waitForMs(ms: number): Promise;