import React from 'react';
import { SVGProps } from './SVG';
export interface LablesWeekProps extends React.SVGProps<SVGTextElement> {
    weekLables: SVGProps['weekLables'];
    rectSize: SVGProps['rectSize'];
    space: SVGProps['space'];
    topPad: number;
}
export declare const LablesWeek: ({ weekLables, rectSize, topPad, space }: LablesWeekProps) => JSX.Element;
