import type { Region } from "../types.js"; export interface BrowserLoginResult { session: string; csrfToken: string; expiresAt?: string; } export interface BrowserLoginOptions { timeoutMs?: number; onStatus?: (message: string) => void; } export declare function loginWithLocalBrowser(region: Region, options?: BrowserLoginOptions): Promise; //# sourceMappingURL=browser-login.d.ts.map