import { InputProps as NutInputProps } from '@nutui/nutui-react-taro'; import { InputProps as TaroInputProps } from '@tarojs/components'; import type { ReactNode } from 'react'; import React from 'react'; export type InputProps = Partial & Partial> & { underLine?: boolean; showPassword?: boolean; extra?: ReactNode; showMaxCount?: boolean; }; export type { InputConfirmType, InputFormatTrigger, InputType } from '@nutui/nutui-react-taro'; export declare const Input: React.ForwardRefExoticComponent & Partial> & { underLine?: boolean; showPassword?: boolean; extra?: ReactNode; showMaxCount?: boolean; } & React.RefAttributes>;