import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface CalendarDayOfWeekProps extends Omit, 'onClick' | 'children'> { /** * The locale you want to use when rendering the name of week day. * If none provided, it will use the `displayWeekDayLocale` from calendar context. */ displayWeekDayLocale?: string; } /** * The react component for `mezzanine` calendar day of week. * You may use it to compose your own calendar. */ declare function CalendarDayOfWeek(props: CalendarDayOfWeekProps): import("react/jsx-runtime").JSX.Element; export default CalendarDayOfWeek;