import { When } from "./When.js";
export interface Locator {
    name: string;
    frame?: string;
    selector: string;
    method?: LocatorMethod;
    params?: unknown[];
    promote?: boolean;
    chain?: boolean;
    when?: When;
}
export type LocatorMethod = string;
