import { ChatWidgetConfig, PageContext } from '../index.js'; export type { ChatWidgetConfig, PageContext }; /** * Initialize the chat widget * * @param config - Widget configuration * @returns The created DOM element */ export declare function init(config: ChatWidgetConfig): HTMLElement; /** * Destroy the chat widget */ export declare function destroy(): void; /** * Check if widget is initialized */ export declare function isInitialized(): boolean; export declare const ChatWidgetAPI: { init: typeof init; destroy: typeof destroy; isInitialized: typeof isInitialized; }; export default ChatWidgetAPI; //# sourceMappingURL=vanilla.d.ts.map