import { SettingsConfig, Environment } from '../types.js'; import { Flow } from './Flow.js'; /** * SettingsFlow subclass with custom URL construction */ export declare class SettingsFlow extends Flow { private authCode; constructor(containerId: string, config: SettingsConfig, partnerName: string, environment: Environment, authCode: string, branchOverride?: string); /** * Construct the specific flow URL for settings - now goes through /auth */ protected constructFlowUrl(baseUrl: string): string; }