import { LayoutType } from '../types';

export interface MonthLabelProps {
    startDateWithEmptyDays: Date;
    weekCount: number;
    monthLabels: string[];
    layout: LayoutType;
    monthLabelCoordinates: number[];
}
declare const MonthLabel: ({ startDateWithEmptyDays, weekCount, monthLabels, monthLabelCoordinates, layout, }: MonthLabelProps) => (import("react/jsx-runtime").JSX.Element | null)[];
export { MonthLabel };
