/** * Help Data for Core Build * Data-driven help command data structure * @requirement REQ-V2-003 - Help system data */ import type { CommandHelp, Category } from './help-types.js'; /** * Categories for command organization */ export declare const CATEGORIES: Category[]; /** * Command help data for Core Build * Priority: Higher number = more common (1-10 scale) */ export declare const COMMAND_HELPS: CommandHelp[];