interface ParsedArgs { command?: string; args: string[]; options: Record; } declare function parseArgs(argv: string[]): ParsedArgs; declare function showHelp(): void; declare function showVersion(): void; export { parseArgs, showHelp, showVersion }; export type { ParsedArgs }; //# sourceMappingURL=parser.d.ts.map