UNPKG

@lobehub/ui

Version:

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

16 lines (15 loc) 705 B
import { TextAreaRef } from 'antd/es/input/TextArea'; import { CSSProperties, ReactNode } from 'react'; import { type ChatInputAreaInnerProps } from "../../chat/ChatInputArea/ChatInputAreaInner"; export interface MobileChatInputAreaProps extends ChatInputAreaInnerProps { bottomAddons?: ReactNode; expand?: boolean; safeArea?: boolean; setExpand?: (expand: boolean) => void; style?: CSSProperties; textAreaLeftAddons?: ReactNode; textAreaRightAddons?: ReactNode; topAddons?: ReactNode; } declare const MobileChatInputArea: import("react").ForwardRefExoticComponent<MobileChatInputAreaProps & import("react").RefAttributes<TextAreaRef>>; export default MobileChatInputArea;