export interface ParsedCliArguments { command?: string; positional: string[]; flags: Record; } export declare function parseCliArguments(argv: string[]): ParsedCliArguments; //# sourceMappingURL=args-parser.d.ts.map