import * as React from "react"; import { DayPicker, type DayButton, type Locale } from "react-day-picker"; import { Button } from "src/shadcn/components/button"; declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, locale, formatters, components, ...props }: React.ComponentProps & { buttonVariant?: React.ComponentProps["variant"]; }): import("react/jsx-runtime").JSX.Element; declare function CalendarDayButton({ className, day, modifiers, locale, ...props }: React.ComponentProps & { locale?: Partial; }): import("react/jsx-runtime").JSX.Element; export { Calendar, CalendarDayButton };