export declare function normalizeFlag(flag: string): string; export declare function extractFlagsFromBody(body: string): string[]; export interface ParsedSkillMd { frontmatter: Record | null; frontmatterFlags: string[] | null; body: string; } export declare function parseSkillMd(content: string): ParsedSkillMd; export declare function harvestFlagsFromSkillMd(content: string): string[];