export declare type InstallCertificateStatusEnumType = 'Accepted' | 'Failed' | 'Rejected';
export default interface InstallCertificateResponse {
    status: InstallCertificateStatusEnumType;
}
