@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 431 B
TypeScript
import { type ReactNode } from 'react';
import ChatSendButton from './components/ChatSendButton';
import type { ChatInputAreaProps } from './type';
interface IChatHeader {
(props: ChatInputAreaProps): ReactNode;
SendButton: typeof ChatSendButton;
}
declare const ChatInputArea: IChatHeader;
export default ChatInputArea;
export { default as ChatSendButton } from './components/ChatSendButton';
export type * from './type';