import React from 'react'; interface IStyleObject { wrapper?: React.CSSProperties; icon?: React.CSSProperties; input?: React.CSSProperties; } export interface IInputProps { iconSrc?: any; initialValue?: string; onChange: (changeEvent: { [name: string]: string; }) => void; labelText?: string; name?: string; id?: string; className?: string; style?: IStyleObject; readOnly?: boolean; step?: number; borderRadius?: 'top' | 'bottom' | 'both'; autoFocus?: boolean; hasError?: boolean; hideLabel?: string; showLabel?: string; helperText?: string; allowResize?: boolean; maxLength?: number; autoHeight?: boolean | { maxLines: number; }; } export declare const MultilineInput: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=index.d.ts.map