export declare enum ButtonSelectors { Create1000 = "#run", Create5000 = "#runlots", Append1000 = "#add", UpdateEvery10th = "#update", SelectFirstRow = "tr:nth-child(1) a[data-test-select]", SelectSecondRow = "tr:nth-child(2) a[data-test-select]", RemoveFirstRow = "tr:nth-child(1) a[data-test-remove]", RemoveSecondRow = "tr:nth-child(2) a[data-test-remove]", Clear = "#clear", SwapRows = "#swaprows" } export declare function emitDomClickEvent(selector: ButtonSelectors): void; export declare function waitForIdle(): Promise; export declare function enforcePaintEvent(): boolean;