import { ChildProcess } from 'node:child_process'; import { Options } from 'open'; import { Env } from '@salesforce/kit'; export declare const openUrl: (url: string, options: Options) => Promise; export declare const handleDomainError: (err: unknown, url: string, env: Env) => string; export type ExecFileFn = (cmd: string, args: string[]) => Promise<{ stdout: string; }>; export declare function getWindowsPrivateBrowserApp(_execFile?: ExecFileFn): Promise<{ name: string | readonly string[]; arguments: string[]; }>; declare const _default: { openUrl: (url: string, options: Options) => Promise; handleDomainError: (err: unknown, url: string, env: Env) => string; }; export default _default;