import { createApp } from 'vue'; import { ChatOptions, ChatHandlers } from './types'; export interface ChatInstance { app: ReturnType; handlers: ChatHandlers; unmount: () => void; _container: Element | string; } export declare function createChat(options?: Partial): ChatInstance;