import type { LogLevel } from './Logger.js'; export interface BrainConfig { profilePath: string; deviceId: string; statusPath: string; logLevel: LogLevel; serverName: string; serverVersion: string; remoteUrl?: string; repoPath?: string; projectId?: string; defaultScope?: 'user' | 'project' | 'team'; peersPath?: string; } export declare function loadConfig(): BrainConfig;