type Options = Readonly<{ skipLogs?: boolean; timeout?: number; }>; /** * Waits for start of page load (when change the url or reload page). */ export declare const waitForStartOfPageLoad: (options?: Options) => Promise; export {};