import type { DateTime } from '@gravity-ui/date-utils'; import type { ValueBase } from "../../types/index.js"; import type { CalendarState, CalendarStateOptionsBase } from "./types.js"; export interface CalendarStateOptions extends ValueBase, CalendarStateOptionsBase { } export type { CalendarState } from "./types.js"; export declare function useCalendarState(props: CalendarStateOptions): CalendarState;