import React from 'react'; import { type DateFieldProps } from '../DateField'; import type { DateValue, FirstDayOfWeek } from '../date/types'; export type DatePickerProps = DateFieldProps & { open?: boolean; defaultOpen?: boolean; onOpenChange?: (open: boolean) => void; defaultFocusedValue?: DateValue; today?: DateValue; firstDayOfWeek?: FirstDayOfWeek; calendarLabel?: string; previousMonthLabel?: string; nextMonthLabel?: string; getCalendarButtonLabel?: (formattedValue: string | null) => string; }; type DatePickerComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const DatePicker: DatePickerComponent; export default DatePicker; //# sourceMappingURL=index.d.ts.map