import type { TestRuntime } from "./types.js"; export declare class NoopTestRuntime implements TestRuntime { attachment(): Promise; attachmentFromPath(): Promise; globalAttachment(): Promise; globalAttachmentFromPath(): Promise; globalError(): Promise; description(): Promise; descriptionHtml(): Promise; displayName(): Promise; historyId(): Promise; labels(): Promise; links(): Promise; parameter(): Promise; logStep(): Promise; step(name: string, body: () => T | PromiseLike): Promise; stepDisplayName(): Promise; stepParameter(): Promise; testCaseId(): Promise; warning(): Promise; } export declare const noopRuntime: TestRuntime;