export type RepeatUntilOptions = { attempts: number; callback: () => void; delay: number; }; declare global { namespace Cypress { interface Chainable { repeatUntil(selector: string, options?: Partial): Chainable; } } } export declare const repeatUntil: (selector: string, options?: Partial) => void;