import { default as React } from 'react';
interface ThumbRatingProps {
    onClick: (type: "up" | "down") => void;
    selected?: "up" | "down" | null;
    type: "up" | "down";
}
declare const ThumbRating: React.FC<ThumbRatingProps>;
export default ThumbRating;
