declare const _timeouts: { /** * The window of time to wait for an element to exist in the DOM. * Set to 0 to wait indefinitely. * Defaults to 1000 */ elementExistsTimeout: number; /** * The window of time to wait for a remote script to complete execution. * Set to 0 to wait indefinitely. * Defaults to 30000 */ scriptTimeout: number; /** * The window of time with which the waitFor() function will retry the callback. * Set to 0 to wait indefinitely. * Defaults to 30000 */ waitForTimeout: number; /** * The delay between polling calls that waitFor() will wait before retrying the callback. * Defaults to 100 */ pollingInterval: number; }; export type TimeoutsType = typeof _timeouts; /** * Set the default timeouts for the TestDriver in milliseconds. * Every property is optional, and can be partially set. * @param timeouts */ export declare function setTimeouts(timeouts: Partial): void; /** * Get the default timeouts set for the TestDriver * @returns */ export declare function getTimeouts(): { /** * The window of time to wait for an element to exist in the DOM. * Set to 0 to wait indefinitely. * Defaults to 1000 */ elementExistsTimeout: number; /** * The window of time to wait for a remote script to complete execution. * Set to 0 to wait indefinitely. * Defaults to 30000 */ scriptTimeout: number; /** * The window of time with which the waitFor() function will retry the callback. * Set to 0 to wait indefinitely. * Defaults to 30000 */ waitForTimeout: number; /** * The delay between polling calls that waitFor() will wait before retrying the callback. * Defaults to 100 */ pollingInterval: number; }; export {};