export interface SkillMentionRange { readonly start: number; readonly end: number; readonly name: string; } export declare function formatSkillToken(name: string): string; export declare function findSkillMentions(text: string, known: ReadonlySet): SkillMentionRange[]; export declare function skillMentionNames(text: string, known: ReadonlySet): string[]; export declare function hasSkillMention(text: string, known: ReadonlySet): boolean;