import { Command } from 'commander'; type Browser_cli_opts = { all?: boolean; append?: boolean; apiKey?: string; base64?: boolean; compact?: boolean; country?: string; daemonDir?: string; depth?: string; direction?: string; distance?: string; fullPage?: boolean; headed?: boolean; idleTimeout?: string; interactive?: boolean; json?: boolean; output?: string; pretty?: boolean; ref?: string; selector?: string; session?: string; submit?: boolean; timeout?: string; wrap?: boolean; zone?: string; }; type Browser_daemon_status = { connected?: boolean; current_title?: string | null; current_url?: string | null; idle_timeout_ms?: number; listener?: unknown; session_name?: string; tracked_requests?: number; }; declare const get_browser_session_names: (opts?: Browser_cli_opts) => string[]; declare const list_browser_sessions: (opts?: Browser_cli_opts) => Promise; declare const handle_browser_open: (url: string, opts: Browser_cli_opts) => Promise; declare const handle_browser_back: (opts: Browser_cli_opts) => Promise; declare const handle_browser_forward: (opts: Browser_cli_opts) => Promise; declare const handle_browser_reload: (opts: Browser_cli_opts) => Promise; declare const handle_browser_snapshot: (opts: Browser_cli_opts) => Promise; declare const handle_browser_screenshot: (file_path: string | undefined, opts: Browser_cli_opts) => Promise; declare const handle_browser_fill: (ref: string, value: string, opts: Browser_cli_opts) => Promise; declare const handle_browser_get_text: (selector: string | undefined, opts: Browser_cli_opts) => Promise; declare const handle_browser_get_html: (selector: string | undefined, opts: Browser_cli_opts) => Promise; declare const handle_browser_click: (ref: string, opts: Browser_cli_opts) => Promise; declare const handle_browser_type: (ref: string, text: string, opts: Browser_cli_opts) => Promise; declare const handle_browser_select: (ref: string, value: string, opts: Browser_cli_opts) => Promise; declare const handle_browser_check: (ref: string, checked: boolean, opts: Browser_cli_opts) => Promise; declare const handle_browser_hover: (ref: string, opts: Browser_cli_opts) => Promise; declare const handle_browser_scroll: (opts: Browser_cli_opts) => Promise; declare const handle_browser_status: (opts: Browser_cli_opts) => Promise; declare const handle_browser_network: (opts: Browser_cli_opts) => Promise; declare const handle_browser_cookies: (opts: Browser_cli_opts) => Promise; declare const handle_browser_sessions: (opts?: Browser_cli_opts) => Promise; declare const handle_browser_close: (opts?: Browser_cli_opts) => Promise; declare const create_browser_command: () => Command; declare const browser_command: Command; export { browser_command, create_browser_command, get_browser_session_names, handle_browser_back, handle_browser_check, handle_browser_click, handle_browser_close, handle_browser_cookies, handle_browser_fill, handle_browser_forward, handle_browser_get_html, handle_browser_get_text, handle_browser_hover, handle_browser_network, handle_browser_open, handle_browser_reload, handle_browser_screenshot, handle_browser_scroll, handle_browser_select, handle_browser_sessions, handle_browser_snapshot, handle_browser_status, handle_browser_type, list_browser_sessions, }; //# sourceMappingURL=browser.d.ts.map