import { FC, PropsWithChildren } from 'react'; import { TextProps } from '../../../Text'; export type CalendarBaseWeekLabelProps = TextProps; /** * `CalendarBaseWeekLabel` is the foundational component for rendering * weekday headers (e.g., “Mon”, “Tue”, “Wed”) in the calendar grid. * It wraps the generic `Text` component to provide the correct semantics, * styling, and size mapping for week labels inside any calendar view. */ export declare const CalendarBaseWeekLabel: FC>;