import { InjectionKey } from 'vue'; import { type CalendarStore, CalendarProps } from '../calendar'; type CalendarContext = { store: CalendarStore; formatter: CalendarProps['formatter']; }; export declare const CALENDAR_CONTEXT_KEY: InjectionKey; export {};