interface BrowserForgeCliConfig { port: number; target: string; storageDir: string; chromePort: number; maxSessions: number; maxAgeDays: number; webOnly: boolean; help: boolean; version: boolean; } declare function parseArgs(argv: string[]): BrowserForgeCliConfig; export { type BrowserForgeCliConfig, parseArgs };