import { BodyType, HttpResponse, RequestParams, RestRuntimeApi } from "@trackunit/iris-app-runtime-core-api"; export type RestRunTimeResponse = HttpResponse; export interface RestRuntimeApiExtended extends RestRuntimeApi { apiHost: string; request: (path: string, method: string, requestParams?: RequestParams | undefined, body?: unknown, bodyType?: BodyType | undefined, secureByDefault?: boolean | undefined) => Promise; } /** * Rest Runtime API accessor. * This API is deprecated and will be removed in the future. * * @deprecated Use the Public Graphql instead. */ export declare const RestRuntime: RestRuntimeApiExtended;