import React from 'react'; import { HeightProps, MarginProps, WidthProps } from 'styled-system'; import { StatusProps } from '../helpers/status'; declare type AreaElementProps = Omit, 'height' | 'width'>; export interface TextAreaProps extends AreaElementProps, StatusProps, MarginProps, HeightProps, WidthProps { resize?: boolean; } export declare const TextArea: import("styled-components").StyledComponent>, import("styled-components").DefaultTheme, {}, never>; export default TextArea;