import { TZDate } from '@date-fns/tz'; import { type Dispatch } from 'react'; import type { CalendarReducerAction } from '../types/shared-types.js'; type Weekday = { date: TZDate; longName: string; shortName: string; }; /** @internal */ export interface _Day { date: TZDate; isCurrentMonthDay: boolean; } export interface _SelectDayViewItems { weekdays: Weekday[]; days: _Day[]; dispatch: Dispatch; } /** Custom hook used for the day selection view. */ export declare function useSelectDay(): _SelectDayViewItems; export {};