import { GuidValue, EnterprisePropertyColumnMapping } from "../models"; export declare class QueryablePropertiesService { private serviceContainerContext; private httpClient; baseUrl: string; constructor(); getQueryableProperties: (tableName?: string, serviceId?: GuidValue) => Promise; removeQueryableProperties: (property: EnterprisePropertyColumnMapping, serviceId?: GuidValue) => Promise; addQueryableProperties: (properties: EnterprisePropertyColumnMapping[], serviceId?: GuidValue) => Promise; updateQueryableProperties: (properties: EnterprisePropertyColumnMapping[], serviceId?: GuidValue) => Promise; private createHttpClientFromServiceId; }