export declare class ModelResolver { private static modelAliases; private static providerAliases; static resolveProvider(input: string): string | null; static resolveModel(input: string, provider?: string): string | null; static getSuggestions(input: string, provider?: string): string[]; private static levenshteinDistance; static validateModel(modelId: string): { valid: boolean; reason?: string; }; } export default ModelResolver; //# sourceMappingURL=model-resolver.d.ts.map