import {InputProps as NativeInputProps} from '@tarojs/components' import {CSSProperties, FunctionComponent} from 'react' export interface InputProps extends NativeInputProps { /** * @description 是否有关闭按钮 * @default true */ closeable?: boolean inputStyle?: CSSProperties style?: CSSProperties padding?: boolean backgroundColor?: string textColor?: string closeIconColor?: string textPlaceholderColor?: string } declare const Input: FunctionComponent export {Input}