UNPKG

@lobehub/ui

Version:

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

18 lines (17 loc) 805 B
import { type ReactNode } from 'react'; import ChatInputActionBar from './components/ChatInputActionBar'; import ChatInputAreaInner from './components/ChatInputAreaInner'; import ChatSendButton from './components/ChatSendButton'; import type { ChatInputAreaProps } from './type'; interface IChatHeader { (props: ChatInputAreaProps): ReactNode; ActionBar: typeof ChatInputActionBar; Inner: typeof ChatInputAreaInner; SendButton: typeof ChatSendButton; } declare const ChatInputArea: IChatHeader; export default ChatInputArea; export { default as ChatInputActionBar } from './components/ChatInputActionBar'; export { default as ChatInputAreaInner } from './components/ChatInputAreaInner'; export { default as ChatSendButton } from './components/ChatSendButton'; export type * from './type';