import React from 'react';
import { CounterObject } from '../../helpers';
export interface SlackCounterProps {
    counters?: CounterObject[];
    user?: string;
    onSelect?: (emoji: string) => void;
    onAdd?: () => void;
    showAddIcon?: boolean;
}
export declare const SlackCounter: React.FC<SlackCounterProps>;
export declare const defaultProps: Required<SlackCounterProps>;
export default SlackCounter;
