UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

14 lines (13 loc) 579 B
import { DatePicker } from '@ark-ui/react/date-picker'; import { DatePickerViewProps } from './primitives'; /** * This private module contains an abstraction of the DayView component. * @module 'date-picker/day-view' */ export type DateValue = DatePicker.DateValue; /** * An abstraction of the DatePickerDayView that renders the day view of the * DatePicker. * @definition [datePicker docs](https://cerberus.digitalu.design/react/date-picker) */ export declare function DatePickerDayView(props: Omit<DatePickerViewProps, 'view'>): import("react/jsx-runtime").JSX.Element;