import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { ToolCallStatus } from "./toolcallstatus.js"; export declare const OutputBashServerToolItemType: { readonly OpenrouterBash: "openrouter:bash"; }; export type OutputBashServerToolItemType = ClosedEnum; /** * An openrouter:bash server tool output item */ export type OutputBashServerToolItem = { command?: string | undefined; exitCode?: number | undefined; id?: string | undefined; status: ToolCallStatus; stderr?: string | undefined; stdout?: string | undefined; type: OutputBashServerToolItemType; }; /** @internal */ export declare const OutputBashServerToolItemType$inboundSchema: z.ZodEnum; /** @internal */ export declare const OutputBashServerToolItemType$outboundSchema: z.ZodEnum; /** @internal */ export declare const OutputBashServerToolItem$inboundSchema: z.ZodType; /** @internal */ export type OutputBashServerToolItem$Outbound = { command?: string | undefined; exitCode?: number | undefined; id?: string | undefined; status: string; stderr?: string | undefined; stdout?: string | undefined; type: string; }; /** @internal */ export declare const OutputBashServerToolItem$outboundSchema: z.ZodType; export declare function outputBashServerToolItemToJSON(outputBashServerToolItem: OutputBashServerToolItem): string; export declare function outputBashServerToolItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=outputbashservertoolitem.d.ts.map