/** * Centralized command names configuration * All command aliases and names are defined here for easy maintenance */ export declare const COMMAND_NAMES: { readonly primary: readonly ["hula", "hub-launch", "hl"]; readonly subcommands: { readonly approve: "approve"; readonly init: "init"; readonly launch: "launch"; readonly schedule: "schedule"; readonly info: "info"; }; }; export type SubcommandName = keyof typeof COMMAND_NAMES.subcommands; //# sourceMappingURL=command-names.d.ts.map