import React from 'react';
export interface SlackCounterGroupProps {
    hover?: boolean;
    onSelect?: (emoji: string) => void;
    emoji: string;
    count?: number;
    active?: boolean;
    names?: string[];
}
export declare const SlackCounterGroup: React.FC<SlackCounterGroupProps>;
export default SlackCounterGroup;
