/** * Unclaimed environment provisioning helper. * * Calls the unclaimed env API, saves credentials to config store as type 'unclaimed', * and returns whether provisioning succeeded. Non-fatal — wraps everything in * try/catch so install flow can fall back to login. */ export interface UnclaimedEnvProvisionOptions { installDir: string; /** Redirect URI key name varies by framework */ redirectUriKey?: string; /** Redirect URI value */ redirectUri?: string; } /** * Try to provision an unclaimed environment. Non-fatal — returns true on success, * false on any failure. * * On success: * - Saves environment to config store as type 'unclaimed' * - Sets it as active environment * - Writes credentials (including cookie password and claim token) to .env.local */ export declare function tryProvisionUnclaimedEnv(options: UnclaimedEnvProvisionOptions): Promise;