UNPKG

@rocket.chat/onboarding-ui

Version:

Set of components and functions for the onboarding experience on Rocket.Chat

14 lines 629 B
import type { ReactElement, ReactNode } from 'react'; type AwaitingConfirmationPageProps = { title?: ReactNode; description?: ReactNode; currentStep: number; stepCount: number; emailAddress: string; securityCode: string; onResendEmailRequest: () => void; onChangeEmailRequest: () => void; }; declare const AwaitingConfirmationPage: ({ title, description, currentStep, stepCount, securityCode, emailAddress, onResendEmailRequest, onChangeEmailRequest, }: AwaitingConfirmationPageProps) => ReactElement; export default AwaitingConfirmationPage; //# sourceMappingURL=AwaitingConfirmationPage.d.ts.map