import { z } from 'zod'; import type { MemoryStoreConfig } from '../memory/index.js'; /** * Memory configuration schema * Controls the persistent memory store feature */ export declare const memoryConfigSchema: z.ZodOptional>; type: z.ZodDefault>>; path: z.ZodDefault>; }, z.core.$strict>>; export type MemoryConfig = z.infer & MemoryStoreConfig; /** * Default memory configuration */ export declare const DEFAULT_MEMORY_CONFIG: MemoryConfig; /** * Resolve home directory in path * Supports both Unix (HOME) and Windows (USERPROFILE) environments */ export declare function resolveHomePath(path: string): string;