import { ComponentPropsWithoutRef } from "react"; import { CalendarDayState, CommonProps } from "../types"; export type DaySelectionProps = CommonProps & { date: Date; state: CalendarDayState; innerProps?: ComponentPropsWithoutRef<"div">; }; export declare const DaySelection: (props: DaySelectionProps) => JSX.Element | null;