/** * Central command registry for syncpoint CLI * This ensures consistency between custom help and Commander.js --help */ export interface CommandOption { flag: string; description: string; type?: 'boolean' | 'string' | 'number'; default?: string; } export interface CommandArgument { name: string; description: string; required: boolean; } export interface CommandInfo { name: string; description: string; usage: string; arguments?: CommandArgument[]; options?: CommandOption[]; examples?: string[]; } export declare const COMMANDS: Record;