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