export interface SkillMentionSkill { name: string; description?: string; enabled?: boolean; } export interface UserMessageMentionReference { name: string; description?: string; } export interface UserMessageMentionAgent { name: string; description?: string; } export declare function extractExplicitSkillMentions(content: string, skills: SkillMentionSkill[]): string[]; export declare function linkifyExplicitSkillMentions(content: string, skills: SkillMentionSkill[]): string; export declare function linkifyUserMessageMentions(content: string, skills: SkillMentionSkill[], agents?: UserMessageMentionAgent[], references?: UserMessageMentionReference[]): string; //# sourceMappingURL=skillMentions.d.ts.map