export interface ParsedArgs { command: string; positionals: string[]; options: Record; } export declare function parseArgs(argv: string[]): ParsedArgs;