///
import type { InputStylesProps } from '../Input/Input.styles';
import type { TextAreaProps } from './TextArea.types';
declare type StyledTextAreaProps = TextAreaProps & InputStylesProps & {
$resize?: 'both' | 'horizontal' | 'none' | 'vertical';
};
export declare const StyledTextArea: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLTextAreaElement>, StyledTextAreaProps>> & string;
export {};