/**
 * Checks the given condition by re-running the passed function many times.
 * Useful for tests.
 *
 * Called many times within the given {@link ms} period, default `2000` ms.
 */
export declare function checkCond<T>(check: () => T, ms?: number): Promise<Awaited<T>>;
export declare const defaultCheckCondTimeout = 2000;
