export interface AgentConfig { machine: { id: string; name: string; }; agent?: { port?: number; url?: string; }; projects: { basePath: string; whitelist: string[]; }; dashboard?: { apiUrl?: string; apiKey?: string; }; } /** * Load agent configuration from ~/.247/ * Uses AGENT_247_PROFILE env var if set, otherwise default config */ export declare function loadConfig(): AgentConfig; export declare const config: AgentConfig; //# sourceMappingURL=config.d.ts.map