UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

9 lines (8 loc) 362 B
/// <reference types="react" /> import { TextAreaProps } from "../../Input"; interface MessageTextAreaProps extends Omit<TextAreaProps, 'onChange' | 'onBlur' | 'value'> { defaultValue: string; onChange?: (value: string) => void; } declare const MessageTextArea: import("react").NamedExoticComponent<MessageTextAreaProps>; export default MessageTextArea;