import { APIResource } from "../../resource.js"; import * as Core from "../../core.js"; import * as GraphV2API from "./graph-v2.js"; import * as FlowRunsAPI from "./flow-runs.js"; export declare class GraphV2 extends APIResource { /** * Get a graph of the tasks and subflow runs for the given flow run */ retrieve(id: string, params?: GraphV2RetrieveParams, options?: Core.RequestOptions): Core.APIPromise; retrieve(id: string, options?: Core.RequestOptions): Core.APIPromise; } export interface GraphV2RetrieveParams { /** * Query param: Only include runs that start or end after this time. */ since?: string; /** * Header param: */ 'x-prefect-api-version'?: string; } export declare namespace GraphV2 { export import GraphV2RetrieveParams = GraphV2API.GraphV2RetrieveParams; } //# sourceMappingURL=graph-v2.d.ts.map