export type IE2ETestPageElement = (...args: any[]) => | Cypress.Chainable> | Cypress.Chainable>; export interface IE2ETestPage { url?: string; elements: Record; get(id: string, ...args: unknown[]): ReturnType; }