import React from 'react'; import { BaseProps } from "../../../utils/types"; import { InputProps } from "../../../index.type"; interface VerificationProps extends BaseProps { fields?: number; type?: 'text' | 'number' | 'password'; onComplete?: (value: string) => void; onChange?: (value: string) => void; } export declare type VerificationCodeInputProps = VerificationProps & Omit; declare const VerificationCodeInput: { (props: VerificationCodeInputProps): React.JSX.Element; displayName: string; defaultProps: { type: string; fields: number; }; }; export default VerificationCodeInput;