import { InputProps } from './input'; import { FC, FormItemName } from '../types'; import './style/otp'; interface OtpProps extends InputProps { sendOtp: (value: any) => any; dependField: FormItemName; countDownSeconds: number; fireBaseId?: string; } declare const Otp: FC; export default Otp;