import React, { FunctionComponent } from 'react'; import { IProps } from '../_common/props'; interface IInput extends IProps { label: string; info?: string; required?: boolean; rules?: ((value: string | undefined) => boolean | string)[]; type?: 'default' | 'outline'; singleLine?: boolean; icon?: any; onChange: (value: string) => void; suffix?: string | React.ReactType; value: string | undefined; name?: string; error?: string; } declare const Input: FunctionComponent; export default Input; //# sourceMappingURL=Input.d.ts.map