/** A structure describing BMC test result */
export interface BmcTestResult {
    /** Date of expiration of the result of this test */
    expirationDate: string;
    /** Error message, null if the test is successfully executed */
    message?: string;
    /** Test result, true if successful */
    status: boolean;
}
//# sourceMappingURL=BmcTestResult.d.ts.map