declare global { namespace Cypress { interface Chainable { /** * Custom command to select DOM element by data-cy attribute. * @example cy.dataCy('greeting') * @example cy.dataCy('greeting', { timeout: 0 }) */ dataCy(value: string, options?: Partial): Chainable>; } } } export declare function registerDataCy(): void;