import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Whether the mounted memory store can be modified. */ export declare const Access: { readonly ReadOnly: "read_only"; readonly ReadWrite: "read_write"; }; /** * Whether the mounted memory store can be modified. */ export type Access = ClosedEnum; export type MemoryStoreMount = { /** * ID of the memory store to mount into the container. */ storeId: string; /** * Directory name for this store under /mnt/memory. */ label: string; /** * Whether the mounted memory store can be modified. */ access?: Access | undefined; /** * Optional short description of the store for agent context. */ description?: string | undefined; /** * Optional instructions for how the agent should use this mounted store. */ instructions?: string | undefined; }; /** @internal */ export declare const Access$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Access$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const MemoryStoreMount$inboundSchema: z.ZodType; /** @internal */ export type MemoryStoreMount$Outbound = { store_id: string; label: string; access: string; description?: string | undefined; instructions?: string | undefined; }; /** @internal */ export declare const MemoryStoreMount$outboundSchema: z.ZodType; export declare function memoryStoreMountToJSON(memoryStoreMount: MemoryStoreMount): string; export declare function memoryStoreMountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=memorystoremount.d.ts.map