import * as z from "zod"; export type AuthLoadCommand = { thoughts?: string | undefined; /** * unique identifier to this step, used for step cache */ id: string; type?: "AUTH_LOAD" | undefined; /** * JSON string auth state */ storageState: string; }; /** @internal */ export declare const AuthLoadCommand$inboundSchema: z.ZodType; /** @internal */ export type AuthLoadCommand$Outbound = { thoughts?: string | undefined; id: string; type: "AUTH_LOAD"; storageState: string; }; /** @internal */ export declare const AuthLoadCommand$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 AuthLoadCommand$ { /** @deprecated use `AuthLoadCommand$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthLoadCommand$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthLoadCommand$Outbound` instead. */ type Outbound = AuthLoadCommand$Outbound; } //# sourceMappingURL=authloadcommand.d.ts.map