import { type PropsBase, type PropsSingle } from 'react-day-picker'; import { type OverrideClassName } from "../../types/OverrideClassName"; import { type DeprecatedReactDayPickerProps } from '../types'; export type CalendarSingleElement = HTMLDivElement; export type CalendarSingleProps = { id?: string; onMount?: (calendarElement: CalendarSingleElement) => void; /** Exposes the react-day-picker component prop. Please be aware, consumers using this will have to guarentee functions as expected */ components?: PropsBase['components']; } & OverrideClassName, 'mode' | DeprecatedReactDayPickerProps>>; export declare const CalendarSingle: { ({ id, onMount, classNameOverride, selected, defaultMonth, weekStartsOn, locale, components, ...restProps }: CalendarSingleProps): JSX.Element; displayName: string; };