import { IServiceNowInstance } from "../../sn/IServiceNowInstance.js"; import { IHttpResponse } from "./IHttpResponse.js"; export declare class TableAPIRequest { private _headers; private _apiBase; private _snInstance; get snInstance(): IServiceNowInstance; set snInstance(value: IServiceNowInstance); constructor(instance: IServiceNowInstance); get(tableName: string, query: object): Promise>; post(tableName: string, query: object, body: object): Promise>; put(tableName: string, sysId: string, body: object): Promise>; patch(tableName: string, sysId: string, body: object): Promise>; private _doRequest; private replaceVar; }