import type { VdmServiceMetadata } from './vdm-types'; import type { ParsedGeneratorOptions } from './options'; /** * @param options - Generator options * @returns the parsed services * @internal */ export declare function parseAllServices(options: ParsedGeneratorOptions): Promise; /** * @param serviceDefinitionPaths - Path to the service definition * @param options - Generator options * @param mappings - mappings for VDM service names to desired name * @param globalNameFormatter - Instance of global name formatter to be used for the parsing process * @returns the parsed service * @internal */ export declare function parseService(edmxServiceSpecPath: string, options: ParsedGeneratorOptions): Promise; /** * @internal */ export declare function getServiceName(service: VdmServiceMetadata): string;