import { OTPInputProps } from 'input-otp'; import React, { Ref } from 'react'; import { InputVariantColor } from '../enums'; export type CodeInputProps = Omit & { isDisabled?: boolean; isInvalid?: boolean; isRequired?: boolean; onComplete: (input: string) => void; isVerified?: boolean; value?: string; id?: string; ref?: Ref; title: string; variantColor?: InputVariantColor; }; type CodeInputRef = HTMLInputElement | null; declare const CodeInput: React.ForwardRefExoticComponent & React.RefAttributes>; export default CodeInput;