export type OnboardingAgreementStepProps = { title: string; onContinue: () => void; TermsComponent: React.ElementType; PrivacyComponent: React.ElementType; }; export default function OnboardingAgreementStep({ title, onContinue, TermsComponent, PrivacyComponent, }: OnboardingAgreementStepProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=OnboardingAgreementStep.d.ts.map