import type { EncryptionType } from './EncryptionType';
import type { Tag } from './Tag';
export type EncryptedObjectMetadata = {
    type: EncryptionType;
    /**
     * The scope of the tokens.
     */
    scope: string;
    /**
     * Effective expiry time of the encrypted object (UTC).
     */
    expiration?: string | null;
    /**
     * Tags associated with the encrypted object.
     *
     */
    tags: Array<Tag>;
};
//# sourceMappingURL=EncryptedObjectMetadata.d.ts.map