UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 519 B
import React from 'react'; /** Matches data set in steps; optional fields because step.config is loosely typed. */ export type WhatsAppOTPStepConfig = { phone?: string; referrer?: string; /** Logged-in WhatsApp verification: Bearer `sms-social/whatsapp` send + verify APIs. */ useAuthenticatedWhatsAppApis?: boolean; }; export declare const SSOWhatsAppOTPScreen: ({ hidden, config, }: { hidden?: boolean; index?: number; config?: WhatsAppOTPStepConfig; }) => React.JSX.Element;