export declare const DataRepositoryAssociationEventType: {
    readonly New: "NEW";
    readonly Changed: "CHANGED";
    readonly Deleted: "DELETED";
};
export type DataRepositoryAssociationEventType = (typeof DataRepositoryAssociationEventType)[keyof typeof DataRepositoryAssociationEventType];
