1 import type { EVENT_VERIFICATION_STATUS } from '../../calendar/constants';
2 import type { CalendarEvent, CalendarEventEncryptionData, SelfAddressData, VcalVeventComponent } from '../calendar';
4 export type GetCalendarEventRaw = (Event: CalendarEvent) => Promise<{
5 veventComponent: VcalVeventComponent;
6 hasDefaultNotifications: boolean;
7 verificationStatus: EVENT_VERIFICATION_STATUS;
8 selfAddressData: SelfAddressData;
9 encryptionData: CalendarEventEncryptionData;