import * as z from "zod"; import { ElementTarget, ElementTarget$Outbound } from "./elementtarget.js"; import { SingleTargetCache, SingleTargetCache$Outbound } from "./singletargetcache.js"; export type FocusCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; useSelector?: boolean | undefined; force?: boolean | undefined; /** * disable element caching for this step */ disableCache?: boolean | undefined; /** * url or url regex for the iframe */ iframeUrl?: string | undefined; type?: "FOCUS" | undefined; target: ElementTarget; cache?: SingleTargetCache | undefined; }; /** @internal */ export declare const FocusCommand$inboundSchema: z.ZodType; /** @internal */ export type FocusCommand$Outbound = { thoughts?: string | undefined; id: string; useSelector?: boolean | undefined; force?: boolean | undefined; disableCache?: boolean | undefined; iframeUrl?: string | undefined; type: "FOCUS"; target: ElementTarget$Outbound; cache?: SingleTargetCache$Outbound | undefined; }; /** @internal */ export declare const FocusCommand$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace FocusCommand$ { /** @deprecated use `FocusCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FocusCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FocusCommand$Outbound` instead. */ type Outbound = FocusCommand$Outbound; } //# sourceMappingURL=focuscommand.d.ts.map