UNPKG

@veracity/vui

Version:

Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.

17 lines (16 loc) 502 B
import { VuiComponent } from "../core/vui.js"; import "../core/index.js"; import { ChatProps } from "./chat.types.js"; import { ChatInput } from "./chatInput.js"; import { ChatMessage } from "./chatMessage.js"; //#region src/chat/chat.d.ts /** * Displays a chat interface with messages and actions. */ declare const Chat: VuiComponent<'div', ChatProps> & { Message: typeof ChatMessage; Input: typeof ChatInput; }; //#endregion export { Chat, Chat as default }; //# sourceMappingURL=chat.d.ts.map