import React from 'react';
export interface YoutubeCounterProps {
    like?: string;
    dislike?: string;
    onLikeClick?: () => void;
    onDislikeClick?: () => void;
    didLike?: boolean;
    didDislike?: boolean;
}
export declare const YoutubeCounter: React.FC<YoutubeCounterProps>;
export default YoutubeCounter;
