UNPKG

@hhgtech/hhg-components

Version:
19 lines (18 loc) 616 B
import React from 'react'; import { SubotNodeAction } from "../../../interfaces/types"; export type Dropdown = { label: string; value: string; }; export type Props = { className?: string; style?: Record<string, unknown>; actions: Array<SubotNodeAction>; countryCode: string; phoneNumber?: string; verified?: boolean; areaCode?: string; callBack: (action: SubotNodeAction, phone: string) => void; }; declare const OTPInfoForm: ({ className, style, actions, countryCode, phoneNumber, areaCode, callBack, }: Props) => React.JSX.Element; export { OTPInfoForm };