type Options = Readonly<{
    skipLogs?: boolean;
    timeout?: number;
}>;
/**
 * Waits until the page interface stabilizes (in particular, the page will stop scrolling).
 */
export declare const waitForInterfaceStabilization: (stabilizationInterval?: number, { skipLogs, timeout }?: Options) => Promise<void>;
export {};
