export type CapabilityTier = 'high' | 'medium' | 'low'; /** * Classify a model identifier into a capability tier. * @param model Self-reported model identifier (e.g., 'claude-opus-4', 'gpt-4o-mini'). * @returns 'high', 'medium', or 'low'. Returns 'medium' when model is undefined. */ export declare function classifyModel(model: string | undefined): CapabilityTier; export declare const MODEL_HINT = "\n\n\u24D8 Pass the `model` parameter (e.g., model=\"claude-opus-4\") to enable richer responses including related note suggestions."; //# sourceMappingURL=model-capabilities.d.ts.map