import { TextareaProps } from "./textarea.component";
export declare const DEFAULT_MIN_HEIGHT = 64;
export interface StyledTextAreaProps extends Pick<TextareaProps, "minHeight"> {
    /** When true, label is placed in line an input */
    labelInline?: boolean;
    /** When true, adjusts padding for icon */
    hasIcon?: boolean;
}
declare const StyledTextarea: import("styled-components").StyledComponent<"div", any, {
    theme: object;
} & StyledTextAreaProps, "theme">;
export default StyledTextarea;
