UNPKG

@lobehub/ui

Version:

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

13 lines (12 loc) 440 B
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 { ChatInputArea }; //# sourceMappingURL=index.d.mts.map