/** * cli-help.ts — Help text, version display, and branded splash screen. * * Extracted from `cli-commands.ts` to keep each module under 450 LOC. * * @module cli-help */ /** Print the full CLI usage / help text to stdout. */ export declare function showHelp(): void; /** Print the CLI version string to stdout. */ export declare function showVersion(): void; /** * Display a branded splash screen when `kosha` is invoked with no arguments. * * Shows the Kosha logo, tagline, version, and quick-start commands. * Uses MAGENTA branding with a clean, minimal layout. */ export declare function showSplash(): void; //# sourceMappingURL=cli-help.d.ts.map