import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MemoryMountAccess } from "./memorymountaccess.js"; export type MemoryMount = { storeId: string; label: string; access?: MemoryMountAccess | undefined; }; /** @internal */ export declare const MemoryMount$inboundSchema: z.ZodType; /** @internal */ export type MemoryMount$Outbound = { store_id: string; label: string; access?: string | undefined; }; /** @internal */ export declare const MemoryMount$outboundSchema: z.ZodType; export declare function memoryMountToJSON(memoryMount: MemoryMount): string; export declare function memoryMountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=memorymount.d.ts.map