/** * Commander program setup * * Creates the Command instance, registers global options, * and sets up the preAction hook for initialization. */ import { Command } from 'commander'; declare const cliVersion: string; export { cliVersion }; export declare const program: Command; /** * Run pre-action hook: common initialization for all commands. * Exported for use in slash-command fallback logic. */ export declare function runPreActionHook(): Promise; export declare function scheduleUpdateCheck(): Promise; //# sourceMappingURL=program.d.ts.map