UNPKG

@octopusdeploy/design-system-components

Version:
12 lines (11 loc) 469 B
interface DatePickerCalendarProps { selected: Date | undefined; onSelect: (date: Date) => void; month: Date | undefined; onMonthChange: (date: Date | undefined) => void; startMonth: Date; endMonth: Date; disablePastDates?: boolean; } export declare function DatePickerCalendar({ selected, onSelect, month, onMonthChange, startMonth, endMonth, disablePastDates }: DatePickerCalendarProps): import("react/jsx-runtime").JSX.Element; export {};