export interface KeyConfigErrors { celo?: string; selfAgent?: string; } export interface AppConfig { rpcUrl: string; ethRpcUrl?: string; privateKey?: `0x${string}`; selfAgentPrivateKey?: `0x${string}`; keyErrors?: KeyConfigErrors; } export declare function loadConfig(): AppConfig;