interface SkillOptions { global?: boolean; } export interface SkillEntry { name: string; description: string; category: string; skills: string[]; } export declare const POPULAR_SKILLS: SkillEntry[]; export declare function skillCommand(action: string, skillName?: string, options?: SkillOptions): Promise; export {}; //# sourceMappingURL=skill.d.ts.map