import { ForwardRefExoticComponent } from 'react';
import { InputProps } from './input';
import TextArea from './textarea';
import './styles/index.scss';
interface InputComponent extends ForwardRefExoticComponent<InputProps> {
    TextArea: typeof TextArea;
}
declare const ExpandedInput: InputComponent;
export { InputProps, TextArea };
export default ExpandedInput;
