import type { BotConfig } from "../config/config.js"; import type { CliBackendConfig } from "../config/types.js"; export type ResolvedCliBackend = { id: string; config: CliBackendConfig; }; export declare function resolveCliBackendIds(cfg?: BotConfig): Set; export declare function resolveCliBackendConfig(provider: string, cfg?: BotConfig): ResolvedCliBackend | null;