#!/usr/bin/env node export type ParsedArgs = { command: "start"; apiKey: string | undefined; name: string | undefined; json: boolean; dir: string | undefined; allowDotfiles: boolean; } | { command: "init"; apiKey: string | undefined; } | { command: "version"; } | { command: "help"; }; export declare function parseArgs(argv: string[]): ParsedArgs; //# sourceMappingURL=bin.d.ts.map