export declare const eventTypes: {
    readonly auditPushed: "audit.pushed";
    readonly auditSlashed: "audit.slashed";
    readonly auditPfeesPaid: "audit.pfees.paid";
    readonly applicationCreated: "application.created";
};
export type EventType = (typeof eventTypes)[keyof typeof eventTypes];
