import { Colors, Variants } from '../../styles'; import * as React from 'react'; interface Props { label?: React.ReactNode; name: string; value?: string; onChange: (e: { target: { value: string; }; }) => void; fullWidth?: boolean; placeholder?: string; color: Colors; variant: Variants; style?: React.CSSProperties; rows?: number; onSelect: (e: any) => void; } declare const TextArea: { (props: Props): JSX.Element; defaultProps: { variant: string; color: string; onSelect: () => void; onChange: (e: any) => void; }; }; export default TextArea;