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