import { z } from "zod";
/**
 * Zod schema for the locator query response from AI
 */
export declare const LocatorQuerySchema: z.ZodObject<{
    query: z.ZodEnum<["getByRole", "getByLabelText", "getByPlaceholderText", "getByAltText", "getByText", "getByTestId"]>;
    params: z.ZodArray<z.ZodString, "many">;
}, "strip", z.ZodTypeAny, {
    query: "getByRole" | "getByLabelText" | "getByPlaceholderText" | "getByAltText" | "getByText" | "getByTestId";
    params: string[];
}, {
    query: "getByRole" | "getByLabelText" | "getByPlaceholderText" | "getByAltText" | "getByText" | "getByTestId";
    params: string[];
}>;
/**
 * Type for the locator query response
 */
export type LocatorQuery = z.infer<typeof LocatorQuerySchema>;
