import React, { ReactNode } from 'react'; import { ChatPosition } from '../types'; interface ChatToggleProps { onClick: () => void; icon?: ReactNode; label?: string; showLabel?: boolean; position: ChatPosition; offsetX: number; offsetY: number; isOpen: boolean; } export declare const ChatToggle: React.FC; export {};