UNPKG

@rocket.chat/onboarding-ui

Version:

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

14 lines 598 B
import type { ReactElement } from 'react'; import type { SubmitHandler } from 'react-hook-form'; import type { RegisterOfflinePayload } from '../../forms/RegisterOfflineForm/RegisterOfflineForm'; type RegisterOfflinePageProps = { termsHref: string; policyHref: string; clientKey: string; onSubmit: SubmitHandler<RegisterOfflinePayload>; onCopySecurityCode: () => void; onBackButtonClick: () => void; }; declare const RegisterOfflinePage: (props: RegisterOfflinePageProps) => ReactElement; export default RegisterOfflinePage; //# sourceMappingURL=RegisterOfflinePage.d.ts.map