export declare type Props = {
    label: string;
    position: 'top' | 'bottom' | 'left' | 'right';
    className?: string;
    style?: Object;
    score: number;
};
