import type { HttpClient } from "./client.js"; import type { TapiRun } from "./types.js"; export declare class RunsResource { private readonly http; constructor(http: HttpClient); get(runId: string): Promise; cancel(runId: string): Promise; provideInput(runId: string, inputKey: string, value: unknown): Promise; wait(runId: string, options?: { intervalMs?: number; timeoutMs?: number; }): Promise; }