import * as React from 'react'; export type CalendarDaysOfWeekLabelsProps = { locale: string className?: string DayOfWeekLabel?: React.ComponentType startingDate?: Date }; export declare const CalendarDaysOfWeekLabels: React.ComponentType; export type CalendarDayOfWeekLabelProps = { weekDayDate: string name: string label: string className?: string }; export declare const CalendarDayOfWeekLabel: React.ComponentType;