/// <reference types="react" />
interface FooterProps {
    blockRadius: number;
    blockSize: number;
    colorScale: string[];
    hideColorLegend?: boolean;
    hideTotalCount?: boolean;
    labels: {
        legend: {
            less: string;
            more: string;
        };
        totalCount?: string;
    };
    loading: boolean;
    maxLevel: number;
    totalCount: number;
    weekdayLabelOffset?: number;
    year: number;
}
declare const Footer: import("react").NamedExoticComponent<FooterProps>;
export default Footer;
