declare class TestResult { action: string; duration: string; successful: boolean; allowFailure: boolean; constructor(action: string, duration: string, successful: boolean, allowFailure: boolean); isConsideredFailure(): boolean; } export { TestResult };