/** * Provider resolution type definitions * * These types are used across multiple layers for provider resolution and fallback logic. */ /** * Provider resolution path constants * Indicates which tier of the fallback system was used */ export declare const ResolutionPath: { readonly API_FALLBACK: "api_fallback"; readonly GUIDED: "guided"; readonly MCP: "mcp"; }; export type ProviderResolutionPath = (typeof ResolutionPath)[keyof typeof ResolutionPath]; /** * Guided completion mode constant * Used when provider cannot complete directly and needs user guidance */ export declare const GUIDED_MODE: "guided"; export type GuidedMode = typeof GUIDED_MODE; //# sourceMappingURL=provider.types.d.ts.map