/**
 * Specifies the type of business event related to an algo certification report.
 * - Tag: 3078
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const AlgoCertificateReportType: Readonly<{
    /** Certificate information
        The recipient of the report is informed about a certificate. This can be used when sending an approved certificate to a venue for registration. */
    readonly CertificateInformation: 0;
    /** Certificate state changed
        The recipient of the report is informed that the status of a certificate has changed. The new state is provided with AlgoCertificateStatus(3022). */
    readonly CertificateStateChanged: 1;
    /** Certificate revoked
        The recipient of the report is informed that the certificate has been revoked. This can be used when revoking a registered certificate from a venue. */
    readonly CertificateRevoked: 2;
}>;
export type AlgoCertificateReportType = (typeof AlgoCertificateReportType)[keyof typeof AlgoCertificateReportType];
