import type { InjectionKey, Ref } from 'vue'; import type { EmitFn } from '../_utils/types'; export interface CalendarState { uid: string | number; prefixCls: string; emit: EmitFn; texts: Record; dateUtils: Record; now: Date; config: Record; eventsManager: Record; view: Record; dnd: Record; touch: Record; } export declare const calendarInjectionKey: InjectionKey; export declare const calendarElInjectionKey: InjectionKey>;