import { Entity as EntityBase, Constructable } from '../odata-common'; import { CustomField } from './selectable'; /** * Super class for all representations of OData v4 entity types. */ export declare abstract class Entity extends EntityBase { protected static customFieldSelector(fieldName: string, entityConstructor: Constructable, isNullable?: NullableT): CustomField; readonly _oDataVersion: 'v4'; } export { Entity as EntityV4 }; //# sourceMappingURL=entity.d.ts.map