export interface Args { [key: string]: any; _: string[]; } export declare function parseArgs(argv?: string[]): { command: string; args: Args; };