/** * Validate Command - Validate plugins, skills, and frontmatter */ export interface ValidateOptions { skills?: boolean; frontmatter?: boolean; strict?: boolean; json?: boolean; } /** * Main validate command handler */ export declare function validateCommand(targetPath: string | undefined, options: ValidateOptions): Promise; //# sourceMappingURL=validate.d.ts.map