@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
13 lines (12 loc) • 517 B
TypeScript
import { TextAreaRef } from 'antd/es/input/TextArea';
import { CSSProperties } from 'react';
import { TextAreaProps } from "../../Input";
export interface ChatInputAreaInnerProps extends Omit<TextAreaProps, 'onInput'> {
className?: string;
loading?: boolean;
onInput?: (value: string) => void;
onSend?: () => void;
style?: CSSProperties;
}
declare const _default: import("react").NamedExoticComponent<ChatInputAreaInnerProps & import("react").RefAttributes<TextAreaRef>>;
export default _default;