export interface SkillRenderContext {
    skillName: string;
    skillDescription: string;
    projectName: string;
    totalFiles: number;
    totalLines: number;
    totalTokens: number;
    hasTechStack: boolean;
    sourceUrl?: string;
}
export declare const getSkillTemplate: () => string;
export declare const generateSkillMd: (context: SkillRenderContext) => string;
