import { EncryptionKeyAlgorithmEnum } from './EncryptionKeyAlgorithmEnum';
/** Encryption key */
export interface EncryptionKey {
    /** Encryption Key algorithm */
    algorithm: EncryptionKeyAlgorithmEnum;
    /** Encryption Key content */
    content: string;
    /** Encryption Key creation date */
    createdAt: string;
    /** Encryption Key ID */
    encryptionKeyId: string;
    /** Encryption Key fingerprint */
    fingerprint: string;
    /** Indicates if you are allowed to edit entry */
    isEditable: boolean;
    /** Number of archives encrypted with this Encryption Key */
    nbArchive?: number;
    /** Encryption Key title */
    title: string;
    /** Encryption Key user ID */
    uid: string;
}
//# sourceMappingURL=EncryptionKey.d.ts.map