import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; export declare const MessagesBashToolResultBlockTypeContainerFileCitation: { readonly ContainerFileCitation: "container_file_citation"; }; export type MessagesBashToolResultBlockTypeContainerFileCitation = ClosedEnum; export type MessagesBashToolResultBlockFile = { containerId: string; endIndex: number; fileId: string; filename: string; startIndex: number; type: MessagesBashToolResultBlockTypeContainerFileCitation; }; /** * Output of a sandbox-executed `openrouter:bash` call from a prior assistant turn. Accepted on replay and dropped before the provider request — Anthropic has no equivalent block. */ export type MessagesBashToolResultBlock = { /** * The canonical container id the command ran under — the `{container_id}` for the Container Files API, reusable as a `container_reference` in later requests. Present on every sandbox-executed call, even when no files changed. */ containerId?: string | undefined; content: { [k: string]: any; }; /** * Citations for the files the sandbox command created or modified, most-recently-touched first (at most 10). Retrieve them via the Container Files API. */ files?: Array | undefined; toolUseId: string; type: "openrouter_bash_tool_result"; }; /** @internal */ export declare const MessagesBashToolResultBlockTypeContainerFileCitation$outboundSchema: z.ZodEnum; /** @internal */ export type MessagesBashToolResultBlockFile$Outbound = { container_id: string; end_index: number; file_id: string; filename: string; start_index: number; type: string; }; /** @internal */ export declare const MessagesBashToolResultBlockFile$outboundSchema: z.ZodType; export declare function messagesBashToolResultBlockFileToJSON(messagesBashToolResultBlockFile: MessagesBashToolResultBlockFile): string; /** @internal */ export type MessagesBashToolResultBlock$Outbound = { container_id?: string | undefined; content: { [k: string]: any; }; files?: Array | undefined; tool_use_id: string; type: "openrouter_bash_tool_result"; }; /** @internal */ export declare const MessagesBashToolResultBlock$outboundSchema: z.ZodType; export declare function messagesBashToolResultBlockToJSON(messagesBashToolResultBlock: MessagesBashToolResultBlock): string; //# sourceMappingURL=messagesbashtoolresultblock.d.ts.map