@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines • 513 B
text/typescript
import { ChatInputAreaProps, ChatSendButtonProps } from "./type.mjs";
import ChatSendButton from "./components/ChatSendButton.mjs";
import { ReactNode } from "react";
//#region src/mobile/ChatInputArea/index.d.ts
interface IChatHeader {
(props: ChatInputAreaProps): ReactNode;
SendButton: typeof ChatSendButton;
}
declare const ChatInputArea: IChatHeader;
//#endregion
export { type ChatInputAreaProps, ChatSendButton, type ChatSendButtonProps, ChatInputArea as default };
//# sourceMappingURL=index.d.mts.map