import type { AgentConfig } from "./runtime/types.js"; export interface AgentRuntimeConfig { agentId: string; name: string; mailDir: string; memoryPath?: string; workspace: string; systemPrompt?: string; llm: { provider: "anthropic" | "google" | "openai" | "ollama"; model: string; apiKey?: string; baseUrl?: string; }; contextWindowTokens?: number; maxTokens?: number; tools?: Array<"read" | "write" | "edit" | "exec" | "mail">; execAllowlist?: string[]; } export declare function loadAgentConfig(path: string): AgentConfig; export declare function defaultMemoryPath(workspace: string): string; export declare function normalizeConfigObject(value: unknown): AgentRuntimeConfig; //# sourceMappingURL=config.d.ts.map