import type { VdmServiceMetadata } from '../../vdm-types'; import type { ODataVersion } from '@sap-cloud-sdk/util'; /** * @internal */ export declare function serviceBuilder(serviceName: string, oDataVersion: ODataVersion): string; /** * @internal */ export declare function serviceClass(service: VdmServiceMetadata): string; /** * @internal * @param entityName - Name of the Entity for which the api property name is build. * @returns apiName e.g. testEntityApi if the entity is called TestEntity. */ export declare function getApiName(entityName: string): string;