import { TextareaWithAutoHeightProps, TextareaWithoutAutoHeightProps, TextareaWithUndefinedAutoHeightProps } from '../Textarea'; type SimpleTextareaGenericProps = { label?: string; value: string | undefined; onChange: (value: string | undefined) => void; }; type SimpleTextareaWithUndefinedAutoHeightProps = SimpleTextareaGenericProps & Omit; type SimpleTextareaWithAutoHeightProps = SimpleTextareaGenericProps & Omit; type SimpleTextareaWithoutAutoHeightProps = SimpleTextareaGenericProps & Omit; type SimpleTextareaProps = SimpleTextareaWithUndefinedAutoHeightProps | SimpleTextareaWithAutoHeightProps | SimpleTextareaWithoutAutoHeightProps; export declare function SimpleTextarea({ label, value, onChange, ...props }: SimpleTextareaProps): import("react/jsx-runtime").JSX.Element; export {};