#!/usr/bin/env node export declare const initCommand: import("citty").CommandDef<{ readonly yes: { type: "boolean"; default: boolean; description: string; }; readonly "no-prompt": { type: "boolean"; default: boolean; description: string; }; readonly "no-color": { type: "boolean"; default: boolean; description: string; }; readonly quiet: { type: "boolean"; default: boolean; description: string; }; readonly config: { type: "string"; description: string; }; readonly path: { readonly type: "positional"; readonly required: false; readonly default: "."; readonly description: "repository root"; }; readonly "first-run": { readonly type: "boolean"; readonly description: "mark as first run (used by npm create lyse)"; }; readonly scaffold: { readonly type: "boolean"; readonly default: false; readonly description: "generate missing AI-readiness files (llms.txt, AGENTS.md)"; }; readonly "migrate-tokens": { readonly type: "boolean"; readonly default: false; readonly description: "migrate legacy ({ value, type }) token JSON to DTCG ({ $value, $type }); skips files that wouldn't be conformant"; }; }>;