import type { ProviderSettings } from "../settings.js"; export type ModelRoleResolution = { providerId: string; model: string; }; /** * Parses a "/" config string and validates * that the referenced provider exists in the active providers list. * * Returns null when the config is missing, malformed, or the provider is inactive. */ export declare function modelRoleResolve(config: string | undefined, providers: ProviderSettings[]): ModelRoleResolution | null; //# sourceMappingURL=modelRoleResolve.d.ts.map