import * as z from 'zod'; /** * @see Memory */ export declare const MemorySchema: z.ZodEnum<{ heap: "heap"; stable: "stable"; }>; /** * Memory type used to select storage or datastore location. */ export type Memory = z.infer;