import React from "react"; import { Indicator } from "../FeedbackIndicator"; import "./textarea.scss"; export declare type TextareaProps = JSX.IntrinsicElements["textarea"] & { /** Element label */ label?: string; /** Property sets whether textarea is resizable */ resizable?: boolean; /** Form indicator */ indicator?: Indicator; /** Wrapper props (div) */ wrapperProps?: JSX.IntrinsicElements["div"]; }; /** Textarea is a component that allows user to add or edit text in multiline */ export declare const Textarea: React.FC;