import { AllFields, CustomField, DeSerializers, DefaultDeSerializers, EntityApi, EntityBuilderType, FieldBuilder, OrderableEdmTypeField } from '@sap-cloud-sdk/odata-v2'; import { CustomTagConfigurations } from './CustomTagConfigurations.js'; import { CustomTagConfigurationsRequestBuilder } from './CustomTagConfigurationsRequestBuilder.js'; export declare class CustomTagConfigurationsApi implements EntityApi, DeSerializersT> { deSerializers: DeSerializersT; entityConstructor: typeof CustomTagConfigurations; private _fieldBuilder?; private _schema?; private navigationPropertyFields; private constructor(); /** * Do not use this method or the constructor directly. * Use the service function as described in the documentation to get an API instance. */ static _privateFactory(deSerializers?: DeSerializersT): CustomTagConfigurationsApi; get fieldBuilder(): FieldBuilder; get schema(): { ALL_FIELDS: AllFields>>; CUSTOM_TAGS_CONFIGURATION_CONTENT: OrderableEdmTypeField>, DeSerializersT, "Edm.String", true, true>; ID: OrderableEdmTypeField>, DeSerializersT, "Edm.String", false, true>; }; customField(fieldName: string, isNullable?: NullableT): CustomField, DeSerializersT, NullableT>; entityBuilder(): EntityBuilderType, DeSerializersT>; requestBuilder(): CustomTagConfigurationsRequestBuilder; _addNavigationProperties(linkedApis: []): this; }