UNPKG

@lobehub/ui

Version:

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

16 lines 877 B
import { ChatInputActionBarProps, ChatInputAreaInnerProps, ChatInputAreaProps, ChatSendButtonProps } from "./type.mjs"; import ChatInputActionBar from "./components/ChatInputActionBar.mjs"; import ChatInputAreaInner from "./components/ChatInputAreaInner.mjs"; import ChatSendButton from "./components/ChatSendButton.mjs"; import { ReactNode } from "react"; //#region src/chat/ChatInputArea/index.d.ts interface IChatHeader { (props: ChatInputAreaProps): ReactNode; ActionBar: typeof ChatInputActionBar; Inner: typeof ChatInputAreaInner; SendButton: typeof ChatSendButton; } declare const ChatInputArea: IChatHeader; //#endregion export { ChatInputActionBar, type ChatInputActionBarProps, ChatInputAreaInner, type ChatInputAreaInnerProps, type ChatInputAreaProps, ChatSendButton, type ChatSendButtonProps, ChatInputArea as default }; //# sourceMappingURL=index.d.mts.map