import type { CSSProperties } from 'react'; import React from 'react'; import { SVGProps } from './SVG'; export declare const textStyle: CSSProperties; export interface LablesWeekProps extends React.SVGProps { weekLabels: SVGProps['weekLabels']; rectSize: SVGProps['rectSize']; space: SVGProps['space']; topPad: number; } export declare const LabelsWeek: ({ weekLabels, rectSize, topPad, space }: LablesWeekProps) => import("react/jsx-runtime").JSX.Element;