/** * Workflow runs service for fetching workflow run data from the API */ import { type WorkflowRunInfo } from '#api/generated/api.js'; export type WorkflowRun = Omit & { workflowId: string; }; export interface WorkflowRunsResult { runs: WorkflowRun[]; skipped: number; count: number; } export interface FetchWorkflowRunsOptions { workflowType?: string; catalog?: string; limit?: number; } export declare function fetchWorkflowRuns(options?: FetchWorkflowRunsOptions): Promise;