/** * Validate asset versions, changelogs, and manifest schemas across asset repos. */ import { Command } from "commander"; /** * Creates the `skaile validate` command group. * * Validates asset manifests, version fields, and changelogs in an asset * repository tree. Subcommands: default `validate [path]` (schema check), * `versions` (semver + flow pin validation), `changelog` (modified domains * must have updated CHANGELOG.md). * * @returns Configured {@link Command} ready for `program.addCommand()`. * @docLink cli/commands/validate#make-validate-command */ export declare function makeValidateCommand(): Command; //# sourceMappingURL=validate.d.ts.map