import { Locale } from 'date-fns'; import { CaptionProps } from 'react-day-picker'; import { CaptionLabelType, DisplayMode } from './types'; export declare const captionColor: (disabled: boolean) => string; export interface DatePickerCaptionProps extends CaptionProps { /** @default false */ multipleMonths?: boolean; className?: string; currentMonth?: Date; locale: Locale; displayMode: DisplayMode; onClickCaptionLabel?: (type: CaptionLabelType) => void; } export declare const Caption: ({ multipleMonths, currentMonth: controlledMonth, displayMode, className, locale, onClickCaptionLabel, ...props }: DatePickerCaptionProps) => import("@emotion/react/jsx-runtime").JSX.Element;