export interface ParsedArgs { command: string; options: Record; flags: string[]; } export declare function parseArgs(): ParsedArgs; export declare function showHelp(): void;