type WaitOptions = { /** * The time in milliseconds to wait on each wait. * Defaults to 0. Any number less than 0 will be treated as 0. */ delay?: number; /** * The number of times to wait. * Defaults to 1. Any number below 1 will be treated as 1. */ count?: number; }; /** * Wait for the given delay as many times as indicated. * * This will throw if jest.useRealTimers() is not used. */ export declare const wait: (options?: WaitOptions) => Promise; /** * Waits for the initial Graphie render. * * @returns a Promise that resolves when the Graphie graph has renderred. * The behaviour is undefined if there are multiple Graphies on the page (which * is unlikely in tests). */ export declare function waitForInitialGraphieRender(): Promise; export {};