import React from 'react'; import { InputProps, InputTypes } from './types'; import { TextArea, TextAreaProps } from './TextArea'; interface CompoundedComponent extends React.ForwardRefExoticComponent> { TextArea: typeof TextArea; } declare const Input: CompoundedComponent; export { Input, type TextAreaProps, type InputProps, type InputTypes }; //# sourceMappingURL=index.d.ts.map