import { PickerDay2Classes } from "./pickerDay2Classes.js"; import { PickerDayOwnerState, PickersDayProps } from "../PickersDay/index.js"; export interface PickerDay2Props extends Omit { /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * Indicates if the day should be visually selected. */ isVisuallySelected?: boolean; } export interface PickerDay2OwnerState extends PickerDayOwnerState { /** * Whether the day is a filler day (its content is hidden). */ isDayFillerCell: boolean; }