UNPKG

@hhgtech/hhg-components

Version:
16 lines (15 loc) 496 B
import React from 'react'; export type SSOOTPConfigs = { phone?: string; email?: string; otpType: 'phone-sms' | 'phone-zalo' | 'phone-whatsapp' | 'email' | 'update-email'; isUpdatePhone?: boolean; afterAction?: 'setup' | 'submitSetup' | 'forgot' | 'update-email'; setupData?: any; provider?: string; }; export declare const SSOOTPScreen: ({ hidden, index, config, }: { hidden?: boolean; index: number; config?: any; }) => React.JSX.Element;