import { Colors, Variants } from '../../styles'; interface Props { fullWidth?: boolean; } interface TextAreaProps { variant: Variants; color: Colors; } declare const StyledContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, Props, never>; declare const StyledTextArea: import("styled-components").StyledComponent<"textarea", import("styled-components").DefaultTheme, TextAreaProps, never>; declare const StyledLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, {}, never>; export { StyledContainer, StyledTextArea, StyledLabel };