import { APIResource } from "../../resource.js"; import * as Core from "../../core.js"; import * as GraphAPI from "./graph.js"; import * as FlowRunsAPI from "./flow-runs.js"; export declare class Graph extends APIResource { /** * Get a task run dependency map for a given flow run. */ retrieve(id: string, params?: GraphRetrieveParams, options?: Core.RequestOptions): Core.APIPromise; retrieve(id: string, options?: Core.RequestOptions): Core.APIPromise; } export type GraphRetrieveResponse = Array; export interface GraphRetrieveParams { 'x-prefect-api-version'?: string; } export declare namespace Graph { export import GraphRetrieveResponse = GraphAPI.GraphRetrieveResponse; export import GraphRetrieveParams = GraphAPI.GraphRetrieveParams; } //# sourceMappingURL=graph.d.ts.map