#!/usr/bin/env node
type ParsedArgs = {
    command?: string;
    options: Record<string, string | boolean | string[]>;
};
declare function parseArgs(argv: string[]): ParsedArgs;

export { type ParsedArgs, parseArgs };
