import type { PomLintRule } from "./types.js"; /** * Page objects keep every locator in a named getter. * * ```ts * // Reported * async signIn() { * await this.page.getByRole("button", { name: "Sign in" }).click(); * } * * // Expected * private get locators() { * return { signInButton: this.page.getByRole("button", { name: "Sign in" }) } as const; * } * async signIn() { * await this.locators.signInButton.click(); * } * ``` */ export declare const noInlineLocatorInPageObjectRule: PomLintRule; //# sourceMappingURL=noInlineLocatorInPageObject.d.ts.map