import { ActionsListWorkflowRunsForRepoResponseData, ActionsGetWorkflowResponseData } from '../api/types'; /** @public */ export declare const cloudbuildApiRef: import("@backstage/core-plugin-api").ApiRef; /** @public */ export type CloudbuildApi = { listWorkflowRuns: (options: { projectId: string; location: string; cloudBuildFilter: string; }) => Promise; getWorkflow: (options: { projectId: string; location: string; id: string; }) => Promise; getWorkflowRun: (options: { projectId: string; location: string; id: string; }) => Promise; reRunWorkflow: (options: { projectId: string; location: string; runId: string; }) => Promise; };