export interface ElementLocator { css: string; } /** * Create a locator that targets an element by its testId * @param testId * @returns The ElementLocator for the given testId */ export declare function byTestId(testId: string): ElementLocator; /** * Create a locator that targets an element by CSS selector * @param css * @returns The ElementLocator matching the CSS selector */ export declare function byCss(css: string): ElementLocator;