export type PopularityTableRow = {
    name: string;
    current: string;
    previous: string | undefined;
};
export declare const PopularityTable: ({ valueColumnName, tableRows, enableComparing }: {
    valueColumnName: string;
    tableRows: PopularityTableRow[];
    enableComparing?: boolean;
}) => import("react/jsx-runtime").JSX.Element;
