import type { ChatWidgetProps } from './types'; /** * Interface global para configuração do widget */ declare global { interface Window { ChatWidgetConfig?: Partial; initChatWidget?: (config: Partial) => void; } } /** * Inicializa o widget no DOM */ declare function initChatWidget(config: Partial): void; export { initChatWidget }; //# sourceMappingURL=embed.d.ts.map