UNPKG

epn-ui

Version:

Дизайн система кабинета ВМ

11 lines (10 loc) 323 B
import { GetProps } from 'antd'; import Input from '../InputText'; declare type OTPProps = GetProps<typeof Input.OTP>; export interface IConfirmCodeInputProps { length: OTPProps['length']; onChange?: OTPProps['onChange']; disabled?: OTPProps['disabled']; status?: OTPProps['status']; } export {};