import type { WrappedView } from "../models/WrappedView"; import type { CancelablePromise } from "../core/CancelablePromise"; export declare class ViewService { /** * Retrieve an existing view * Retrieve an existing view. This will return the view's information, including the title, description, and others. * @param id * @returns WrappedView Success, including the retrieved view * @throws ApiError */ static getView(id: string): CancelablePromise; }