/** * Executes a function and waits for the application to stabilize. * * This utility helps in testing async state transitions by ensuring that * any scheduled effects or microtasks are processed before the promise resolves. * * @param fn The function to execute. * @returns A promise that resolves to the result of the function after stability. */ export declare function act(fn: () => T): Promise;