/** * Build-time snapshot of the plugin command surface, embedded so it ships in `lib/`. * * `command-snapshot.json` is NOT in package.json `files`, so it does not exist on * disk at runtime for an installed plugin. This module mirrors that file (command + * flags only) so the command-reference generator can read the real flag list without * a runtime file read. Regenerate alongside `command-snapshot.json` — never hand-edit. */ export type CommandSnapshotEntry = { readonly command: string; readonly flags: readonly string[]; }; export declare const COMMAND_SNAPSHOT: readonly CommandSnapshotEntry[];