import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export declare class ResourcesService { readonly httpRequest: BaseHttpRequest; constructor(httpRequest: BaseHttpRequest); postResourcesBulk({ orgSlug, table, requestBody, }: { orgSlug: string; table: string; requestBody?: Array; }): CancelablePromise; getResources({ orgSlug, table, turnOffPagination, search, filterableColumns, limit, attributes, where, last, order, }: { orgSlug: string; table: string; turnOffPagination?: boolean; search?: string; filterableColumns?: any[]; limit?: number; attributes?: Array<(Array | string)>; where?: any; last?: string; order?: string; }): CancelablePromise; postResources({ orgSlug, table, requestBody, }: { orgSlug: string; table: string; requestBody?: any; }): CancelablePromise; getResources1({ orgSlug, table, id, attributes, }: { orgSlug: string; table: string; id: string; attributes?: Array<(Array | string)>; }): CancelablePromise; putResources({ orgSlug, table, id, requestBody, }: { orgSlug: string; table: string; id: string; requestBody?: any; }): CancelablePromise; deleteResources({ orgSlug, table, id, }: { orgSlug: string; table: string; id: string; }): CancelablePromise; }