export declare const eventTypes: {
    readonly auditPushed: "audit.pushed";
    readonly auditSlashed: "audit.slashed";
    readonly auditPfeesPaid: "audit.pfees.paid";
    readonly applicationCreated: "application.created";
    readonly applicationPriceQuote: "application.price.quote";
    readonly gctlMinted: "gctl.minted";
    readonly auditorFeesPaid: "auditor.fees.paid";
};
export type EventType = (typeof eventTypes)[keyof typeof eventTypes];
