import { SkipDisabledReason } from '../components/OnboardingStepFrame'; import { VerifyUnlockFinancialStackSectionProps } from '../sections/VerifyUnlockFinancialStackSection'; export interface VerifyUnlockFinancialStackPageProps extends VerifyUnlockFinancialStackSectionProps { stepNumber: number; totalSteps: number; skipDisabled?: boolean; skipDisabledReason?: SkipDisabledReason; onStartVerificationClick: () => void; onSkipToDashboardClick?: () => void; } export declare const VerifyUnlockFinancialStackPage: ({ stepNumber, totalSteps, skipDisabled, skipDisabledReason, onStartVerificationClick, onSkipToDashboardClick, ...sectionProps }: VerifyUnlockFinancialStackPageProps) => import("react/jsx-runtime").JSX.Element;