interface FloatingChatButtonProps {
    onClick: () => void;
    isOpen?: boolean;
    unreadCount?: number;
    position?: "bottom-right" | "bottom-left" | "top-right" | "top-left";
    size?: "sm" | "md" | "lg";
    color?: string;
    className?: string;
    disabled?: boolean;
    ariaLabel?: string;
}
export declare function FloatingChatButton({ onClick, isOpen, unreadCount, position, size, color, className, disabled, ariaLabel, }: FloatingChatButtonProps): import("react/jsx-runtime").JSX.Element;
export default FloatingChatButton;
//# sourceMappingURL=floating-chat-button.d.ts.map