/// <reference types="react" />
import type { Labels, Week } from "../types/charts";
interface ChartLabelsProps {
    blockMargin: number;
    blockSize: number;
    hideMonthLabels: boolean;
    labelHeight: number;
    labelMargin: number;
    labels: Labels;
    showWeekdayLabels: boolean;
    weekStart: number;
    weeks: Week[];
}
declare const ChartLabels: import("react").NamedExoticComponent<ChartLabelsProps>;
export default ChartLabels;
