declare global { namespace Cypress { interface Chainable { /** * Custom command to test being on a given route. * @example cy.testRoute('home') */ testRoute(value: string): void; } } } export declare function registerTestRoute(): void;