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