/** * Creates a promise that resolves after the specified delay. This is a convenience wrapper around setTimeout that allows using async/await syntax for delays. * @param ms - The delay duration in milliseconds. * @returns A promise that resolves after the specified delay. */ export declare function delay(ms: number): Promise;