import { DayPicker } from 'react-day-picker'; import { Calendar } from './calendar'; import type * as React from 'react'; export type DatePickerProps = React.ComponentProps & { buttonVariant?: React.ComponentProps['buttonVariant']; }; declare function DatePicker({ className, classNames, showOutsideDays, captionLayout, buttonVariant, ...props }: DatePickerProps): import("react/jsx-runtime").JSX.Element; export { DatePicker }; //# sourceMappingURL=date-picker.d.ts.map