export interface ICertificateRevocation {
    /**
     * Unique number issued by the certificate issuer.
     */
    serialNumberInHex: string;
    /**
     * Certificate revocation date. Date of invalidating a certificate before its scheduled expiration date.
     * If not provided, the revocationDate will be set to the current date.
     */
    revocationDate?: string;
}
//# sourceMappingURL=ICertificateRevocation.d.ts.map