export declare function resolveReportTimestamp( rawTimestamp: string | number | Date | null | undefined, label: string, fallbackTimestamp?: string | null ): string; export declare function resolveRuntime(options: Record): Record; export declare function cloneRuntimeConfig(runtimeConfig: Record | null | undefined): Record | null; export declare function snapshotRuntimeState(): { runtimeConfig: Record | null; activeKernelPath: unknown; activeKernelPathSource: string | null; activeKernelPathPolicy: unknown; }; export declare function restoreRuntimeState(snapshot: Record | null | undefined): void; export declare function runWithRuntimeIsolationForSuite(run: () => Promise): Promise; export declare function sanitizeReportOutput(output: unknown): unknown; export declare function loadRuntimeConfigFromRef( ref: string, context: Record ): Promise<{ config: Record; runtime: Record }>; export declare function loadRuntimeConfigFromUrl( url: string, options?: Record ): Promise<{ config: Record; runtime: Record }>; export declare function applyRuntimeConfigFromUrl( url: string, options?: Record ): Promise>; export declare function loadRuntimeProfile( profileId: string, options?: Record ): Promise<{ config: Record; runtime: Record }>; export declare function applyRuntimeProfile( profileId: string, options?: Record ): Promise>; export declare function applyRuntimeForRun( run: Record, options?: Record ): Promise; export declare function normalizeManifest(manifest: Record): { defaults: Record; runs: Array>; reportModelId: string; report: Record | null; }; export declare function mergeRunDefaults( defaults: Record, run: Record ): Record; export declare function summarizeManifestRuns(results: Array>): { totalRuns: number; passedRuns: number; failedRuns: number; durationMs: number; };