///
import * as React from 'react';
import { RankingItem } from './RankingRow';
export interface RankingProps {
name: string;
unit: string;
data: RankingItem[];
title?: string;
description?: string;
}
export interface RankingState {
by: string;
desc: boolean;
}
export interface WrapperProps {
title?: string;
noTitle?: boolean;
}
export declare class Ranking extends React.Component {
constructor(props: RankingProps);
click(next: string): void;
render(): JSX.Element;
readonly body: JSX.Element[];
}