import React from 'react';
import { SVGProps } from './SVG';
export interface LablesMonthProps extends React.SVGProps<SVGTextElement> {
    monthLabels: SVGProps['monthLabels'];
    rectSize: SVGProps['rectSize'];
    space: SVGProps['space'];
    leftPad: number;
    colNum: number;
    rectY?: number;
    startDate: SVGProps['startDate'];
    endDate?: SVGProps['endDate'];
}
export declare const LabelsMonth: ({ monthLabels, rectSize, space, leftPad, colNum, rectY, startDate, endDate, }: LablesMonthProps) => import("react/jsx-runtime").JSX.Element;
