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