import { type AgentsCredential } from "./types.js"; export interface PlaywrightLoginOptions { region: string; /** Max time to wait for the operator to finish signing in (ms). */ timeoutMs?: number; } /** * Launch a headed browser, let the operator sign in, and capture the * resulting BFF session cookie as an `AgentsCredential`. */ export declare const runPlaywrightLogin: (options: PlaywrightLoginOptions) => Promise;