/** * skaile preset — scaffold, validate, export, and apply preset YAML files. * * Subcommands: init, validate, export, apply. * Delegates to @skaile/library preset module for parsing and validation. */ import { type Placeholder } from "@skaile/workspaces/types/manifests"; import { Command } from "commander"; /** * Creates the `skaile preset` command group. * * Scaffolds and validates preset YAML files used by the Asset Store v2. * Subcommands: `init [name]` (scaffold a `.preset.yaml` template) and * `validate ` (schema + cycle + nesting-depth check). * * @returns Configured {@link Command} ready for `program.addCommand()`. * @docLink cli/commands/misc#preset */ export declare function makePresetCommand(): Command; /** * Validate per-item placeholder structure (dry-run with no input values). * Returns true when any placeholder issues were surfaced as warnings. */ export declare function checkPresetPlaceholders(allPlaceholders: Placeholder[]): Promise; //# sourceMappingURL=preset-cmd.d.ts.map