import { LabelProps } from "../Label"; import React from "react"; export type TextareaProps = Omit, "onChange"> & { fullwidth?: boolean; resizable?: boolean; error?: boolean; label?: string; value?: string; onChange?: (e: React.ChangeEvent) => void; disabled?: boolean; placeholder?: string; textareaProps?: React.TextareaHTMLAttributes; containerProps?: React.HTMLAttributes; labelProps?: LabelProps; }; export default function Textarea({ fullwidth, resizable, error, label, textareaProps, labelProps, value, onChange, placeholder, disabled, containerProps, ...props }: TextareaProps): React.JSX.Element;