import * as z from "zod/v4"; import { ClosedEnum, OpenEnum } 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 ActionEnum: { readonly Read: "read"; readonly Write: "write"; readonly Delete: "delete"; }; export type ActionEnum = OpenEnum; export declare const OutputMemoryServerToolItemType: { readonly OpenrouterMemory: "openrouter:memory"; }; export type OutputMemoryServerToolItemType = ClosedEnum; /** * An openrouter:memory server tool output item */ export type OutputMemoryServerToolItem = { action?: ActionEnum | undefined; id?: string | undefined; key?: string | undefined; status: ToolCallStatus; type: OutputMemoryServerToolItemType; value?: any | null | undefined; }; /** @internal */ export declare const ActionEnum$inboundSchema: z.ZodType; /** @internal */ export declare const ActionEnum$outboundSchema: z.ZodType; /** @internal */ export declare const OutputMemoryServerToolItemType$inboundSchema: z.ZodEnum; /** @internal */ export declare const OutputMemoryServerToolItemType$outboundSchema: z.ZodEnum; /** @internal */ export declare const OutputMemoryServerToolItem$inboundSchema: z.ZodType; /** @internal */ export type OutputMemoryServerToolItem$Outbound = { action?: string | undefined; id?: string | undefined; key?: string | undefined; status: string; type: string; value?: any | null | undefined; }; /** @internal */ export declare const OutputMemoryServerToolItem$outboundSchema: z.ZodType; export declare function outputMemoryServerToolItemToJSON(outputMemoryServerToolItem: OutputMemoryServerToolItem): string; export declare function outputMemoryServerToolItemFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=outputmemoryservertoolitem.d.ts.map