import { BaseEntity } from './base.entity';
export declare class SkillCatalog extends BaseEntity {
    canonicalName: string;
    aliases: string[];
    variations: Record<string, number>;
    category: string;
    parentSkill: string;
    relatedSkills: string[];
    usageCount: number;
    isVerified: boolean;
    firstSeenDate: Date;
    lastUpdatedDate: Date;
    searchVector: any;
}
