@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
17 lines (16 loc) • 712 B
text/typescript
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 { ChatInputArea };
//# sourceMappingURL=index.d.mts.map