UNPKG

@rocket.chat/onboarding-ui

Version:

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

12 lines 454 B
import { type ReactElement } from 'react'; type CopyStepProps = { termsHref: string; policyHref: string; clientKey: string; onCopySecurityCode: () => void; onBackButtonClick: () => void; setStep: (step: string) => void; }; declare const CopyStep: ({ termsHref, policyHref, clientKey, setStep, onCopySecurityCode, onBackButtonClick, }: CopyStepProps) => ReactElement; export default CopyStep; //# sourceMappingURL=CopyStep.d.ts.map