import { OTPProps } from 'antd/es/input/OTP';
import { FC } from 'react';
import { INPUT_OTP } from '../../../Types';
export interface IInputOTP {
    ctype: typeof INPUT_OTP;
    props: OTPProps;
}
declare const InputOTP: FC<IInputOTP>;
export default InputOTP;
