export declare type HashAlgorithmEnumType = 'SHA256' | 'SHA384' | 'SHA512';
export declare type GetInstalledCertificateStatusEnumType = 'Accepted' | 'NotFound';
export default interface GetInstalledCertificateIdsResponse {
    certificateHashData?: [CertificateHashDataType, ...CertificateHashDataType[]];
    status: GetInstalledCertificateStatusEnumType;
}
export interface CertificateHashDataType {
    hashAlgorithm: HashAlgorithmEnumType;
    issuerNameHash: string;
    issuerKeyHash: string;
    serialNumber: string;
}
