import { Component, JSXElement, Accessor } from "solid-js"; import { ApplyDateRange, DateArray, DateObjectUnits, DatePickerDayClassNamesAndColors, HoverRangeValue } from "../../interface/general"; interface DatePickerDayProps extends DatePickerDayClassNamesAndColors, Partial { header?: boolean; children?: JSXElement; onClick?: () => void; disabled?: boolean; disabledDays?: DateArray[]; shouldHighlightWeekends?: boolean; onDisabledDayError?: (data: DateObjectUnits) => void; onHover?: () => void; onHoverEnd?: () => void; hoverRangeValue?: Accessor; wrapperProps?: any; headerValue?: string; noButtonAnimation?: boolean; month?: Accessor; year?: Accessor; day?: number; } export declare const DatePickerDay: Component; export {};