import { SmokeTestResult } from "./types.mjs";
/**
 * Generates the final test report without doing any resource cleanup.
 */
export declare function generateFinalReport(): Promise<void>;
/**
 * Updates the test status in the state object and reports the result.
 */
export declare function reportSmokeTestResult(result: SmokeTestResult, type: string, phase?: string, environment?: string): void;
/**
 * Initialize test statuses based on test options
 */
export declare function initializeTestStatus(): void;
