import { ProtocolVersion } from '../../../Local/Protocol/ProtocolVersion' import { EncryptedPayloadInterface } from '../../Payload/Interfaces/EncryptedPayload' import { ItemInterface } from './ItemInterface' export interface EncryptedItemInterface extends ItemInterface { content: string version: ProtocolVersion errorDecrypting: boolean waitingForKey?: boolean auth_hash?: string }