export interface TextareaProps { value: string; onChange: (value: string) => void; onSubmit?: (value: string) => void; placeholder?: string; height?: number; isFocused?: boolean; } export declare function Textarea({ value, onChange, onSubmit, placeholder, height, isFocused, }: TextareaProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Textarea.d.ts.map