import React from 'react';
import { SVGProps } from './SVG';
export interface LablesMonthProps extends React.SVGProps<SVGTextElement> {
    monthLables: SVGProps['monthLables'];
    rectSize: SVGProps['rectSize'];
    space: SVGProps['space'];
    leftPad: number;
    colNum: number;
    startDate: SVGProps['startDate'];
}
export declare const LablesMonth: ({ monthLables, rectSize, space, leftPad, colNum, startDate, }: LablesMonthProps) => JSX.Element;
