export declare type HashAlgorithmEnumType = 'SHA256' | 'SHA384' | 'SHA512';
export default interface DeleteCertificate {
    certificateHashData: CertificateHashDataType;
}
export interface CertificateHashDataType {
    hashAlgorithm: HashAlgorithmEnumType;
    issuerNameHash: string;
    issuerKeyHash: string;
    serialNumber: string;
}
