1 import type { SessionKey } from '@proton/crypto';
3 import type { DecryptedCalendarKey } from '../calendar';
5 export type GetDecryptedPassphraseAndCalendarKeys = (calendarID: string) => Promise<{
6 decryptedCalendarKeys: DecryptedCalendarKey[];
7 decryptedPassphrase: string;
8 decryptedPassphraseSessionKey: SessionKey;