export interface ClawConfig { api_key: string; agent_id: string; agent_slug: string; email?: string; wallet_address?: string; provider?: { cli_command?: string; max_concurrent?: number; [key: string]: unknown; }; api_provider?: { platforms: string[]; enabled_at: string; bnbot_port?: number; max_rpm?: number; }; } export declare function getConfigPath(): string; export declare function loadConfig(): ClawConfig | null; export declare function saveConfig(config: Partial): void; export declare function requireConfig(): ClawConfig;