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