@hhgtech/hhg-components
Version:
Hello Health Group common components
16 lines (15 loc) • 496 B
TypeScript
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;