import React from 'react'; import '../g.scss'; declare function LabelTextInput(props: ILabelTextInput): React.JSX.Element; export default LabelTextInput; export interface ILabelTextInput { title?: any; value?: any; change?: Function; size?: string; disabled?: boolean; suffixicon?: string; prefixIcon?: string; paddingSize?: string; wrapStyle?: React.CSSProperties; padding?: string; placeholder?: string; maxLength?: number; empty?: boolean; nonNull?: boolean; maxWidth?: number; }