///
import './index.scss';
export interface ColorfulInputProps {
/**
* 标题
*/
label?: string;
/**
* 标题宽度
*/
labelWidth?: string;
/**
* 隐藏标题
*/
isHideLabel?: boolean;
/**
* 提示文字
*/
placeholder?: string;
/**
* 输入框文字
*/
defaultValue?: string;
/**
* 文本位置
*/
textAlign?: 'left' | 'center' | 'right';
/**
* 必填项
*/
password?: boolean;
/**
* 必填项
*/
required?: boolean;
/**
* 禁用
*/
disabled?: boolean;
/**
* 删除图标
*/
allowClear?: boolean;
/**
* 上下结构
*/
separate?: boolean;
/**
* 错误状态
*/
isError?: boolean;
/**
* Change事件
*/
onChange?: any;
}
declare const ColorfulInput: import("react").ForwardRefExoticComponent>;
export default ColorfulInput;