import * as z from "zod/v4"; import { ClosedEnum, OpenEnum } from "../types/enums.js"; export declare const LocalShellCallOutputItemStatus: { readonly InProgress: "in_progress"; readonly Completed: "completed"; readonly Incomplete: "incomplete"; }; export type LocalShellCallOutputItemStatus = OpenEnum; export declare const LocalShellCallOutputItemType: { readonly LocalShellCallOutput: "local_shell_call_output"; }; export type LocalShellCallOutputItemType = ClosedEnum; /** * Output from a local shell command execution */ export type LocalShellCallOutputItem = { id: string; output: string; status?: LocalShellCallOutputItemStatus | null | undefined; type: LocalShellCallOutputItemType; }; /** @internal */ export declare const LocalShellCallOutputItemStatus$outboundSchema: z.ZodType; /** @internal */ export declare const LocalShellCallOutputItemType$outboundSchema: z.ZodEnum; /** @internal */ export type LocalShellCallOutputItem$Outbound = { id: string; output: string; status?: string | null | undefined; type: string; }; /** @internal */ export declare const LocalShellCallOutputItem$outboundSchema: z.ZodType; export declare function localShellCallOutputItemToJSON(localShellCallOutputItem: LocalShellCallOutputItem): string; //# sourceMappingURL=localshellcalloutputitem.d.ts.map