export interface ListRunsInput { sandbox_id: string; limit?: number; } export interface RunSummary { flow_run_id: string; workflow_name: string; status: string; started_at: string; last_activity_at: string; request_count: number; webhook_count: number; share_url: string; } export interface ListRunsResponse { sandbox_id: string; total: number; runs: RunSummary[]; } export declare const listRunsTool: { readonly name: "list_runs"; readonly description: string; readonly inputSchema: { readonly type: "object"; readonly properties: { readonly sandbox_id: { readonly type: "string"; readonly description: "The sandbox_id returned by import_spec."; }; readonly limit: { readonly type: "number"; readonly description: "Max number of runs to return (default 20, server may cap)."; }; }; readonly required: readonly ["sandbox_id"]; readonly additionalProperties: false; }; }; export declare function runListRuns(input: ListRunsInput): Promise;