import { AxiosInstance } from "axios"; import { AsureForceConnectConfig } from "./types/AsureForceConfig"; import { AsureQueryParameters } from "./types/AsureForceQueries"; declare class ConnectBase { readonly config: AsureForceConnectConfig; http: AxiosInstance; debugEnabled: boolean; constructor(config: AsureForceConnectConfig); processQueryParameters(queries?: AsureQueryParameters): string; processSelect(queryParams?: (string | number | symbol)[]): string; processExpand(queryParams?: (string | number | symbol)[]): string; processSkip(skip?: number): string; processTop(top?: number): string; } export { ConnectBase };