import type { ComponentProps } from 'svelte'; import type RangeCalendar from './range-calendar.svelte'; import RangeCalendarMonthSelect from './range-calendar-month-select.svelte'; import RangeCalendarYearSelect from './range-calendar-year-select.svelte'; import { type DateValue } from '@internationalized/date'; type $$ComponentProps = { captionLayout: ComponentProps['captionLayout']; months: ComponentProps['months']; monthFormat: ComponentProps['monthFormat']; years: ComponentProps['years']; yearFormat: ComponentProps['yearFormat']; month: DateValue; placeholder: DateValue | undefined; locale: string; monthIndex: number; }; declare const RangeCalendarCaption: import("svelte").Component<$$ComponentProps, {}, "placeholder">; type RangeCalendarCaption = ReturnType; export default RangeCalendarCaption;