import { APIResource } from "../../resource.js"; import * as Core from "../../core.js"; import * as ViewsAPI from "./views.js"; export declare class Views extends APIResource { /** * Reads the content of a view from the prefect-collection-registry. */ retrieve(view: string, params?: ViewRetrieveParams, options?: Core.RequestOptions): Core.APIPromise; retrieve(view: string, options?: Core.RequestOptions): Core.APIPromise; } export type ViewRetrieveResponse = unknown; export interface ViewRetrieveParams { 'x-prefect-api-version'?: string; } export declare namespace Views { export import ViewRetrieveResponse = ViewsAPI.ViewRetrieveResponse; export import ViewRetrieveParams = ViewsAPI.ViewRetrieveParams; } //# sourceMappingURL=views.d.ts.map