import * as z from "zod"; import { ElementTarget, ElementTarget$Outbound } from "./elementtarget.js"; import { SingleTargetCache, SingleTargetCache$Outbound } from "./singletargetcache.js"; export type TypeCommand = { 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; clearContent?: boolean | undefined; /** * Deprecated: this is now the default. Please set delay to zero if you wish to achieve instant typing behavior. */ pressKeysSequentially?: boolean | undefined; /** * Delay between each press in milliseconds. */ delay?: number | undefined; pressEnter?: boolean | undefined; type?: "TYPE" | undefined; target?: ElementTarget | undefined; value: string; cache?: SingleTargetCache | undefined; }; /** @internal */ export declare const TypeCommand$inboundSchema: z.ZodType; /** @internal */ export type TypeCommand$Outbound = { thoughts?: string | undefined; id: string; useSelector?: boolean | undefined; force?: boolean | undefined; disableCache?: boolean | undefined; iframeUrl?: string | undefined; clearContent?: boolean | undefined; pressKeysSequentially?: boolean | undefined; delay?: number | undefined; pressEnter?: boolean | undefined; type: "TYPE"; target?: ElementTarget$Outbound | undefined; value: string; cache?: SingleTargetCache$Outbound | undefined; }; /** @internal */ export declare const TypeCommand$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 TypeCommand$ { /** @deprecated use `TypeCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TypeCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TypeCommand$Outbound` instead. */ type Outbound = TypeCommand$Outbound; } //# sourceMappingURL=typecommand.d.ts.map