import type { TemplatesArgs } from "../args.js"; /** * Dispatches the "templates" CLI command: handles validate, create, show, and list subcommands. * * Processes the provided CLI arguments to run the appropriate templates subcommand: * - validate: validate a template by ID * - create: create or scaffold a new template * - show: display detailed metadata and usage for a specific template * - list: list available templates with optional filtering and verbose output * * @param args - Parsed templates command arguments (subcommand selector, filters, flags, and options) */ export declare function runTemplates(args: TemplatesArgs): void;