import { SmrtClassOptions } from '@happyvertical/smrt-core'; /** * Load slot configs for multiple agents from the agent_configs table. * * Returns a nested map: agentId -> slotId -> configData. * Agent-specific tables (e.g., praeco_sources, praeco_reports) * are NOT loaded here — those stay in the host application. * * @param agents - Array of agent identifiers (id + agentClass) * @param dbOptions - Database options for SmrtCollection.create() * @returns Map of agentId -> slotId -> config data */ export declare function loadSlotConfigs(agents: Array<{ id: string; agentClass: string; }>, dbOptions: SmrtClassOptions): Promise>>; //# sourceMappingURL=config-loader.d.ts.map