export interface DisclawConfig { workspaces_root: string; management_channel: string; claude_command: string; claude_timeout_seconds: number; } export interface EnvConfig { DISCORD_BOT_TOKEN: string; DISCORD_GUILD_ID?: string; CLAUDE_PATH?: string; } export declare function loadEnv(rootDir: string): EnvConfig; export declare function loadDisclawConfig(rootDir: string): DisclawConfig; //# sourceMappingURL=loader.d.ts.map