/// import SeverityType from '../../types/SeverityType'; interface TextAreaWrapperProps { disabled?: boolean; severity?: SeverityType; focus: boolean; } interface TextAreaPropsType { resizeable?: boolean; disabled?: boolean; focus: boolean; severity?: SeverityType; } export declare const StyledTextAreaWrapper: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, TextAreaWrapperProps>>; export declare const StyledTextArea: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLTextAreaElement>, TextAreaPropsType>>; export {};