import { ObjectType } from './ObjectType';
export declare type DoiAssociation = {
    associationId: string;
    etag: string;
    doiUri: string;
    doiUrl: string;
    objectId: string;
    objectType: ObjectType;
    objectVersion?: number;
    associatedBy: string;
    associatedOn: string;
    updatedBy: string;
    updatedOn: string;
};
