import type { ClassDeclarationStructure } from 'ts-morph'; import type { VdmEntity, VdmProperty, VdmServiceMetadata } from '../vdm-types'; /** * @internal */ export declare function entityClass(entity: VdmEntity, service: VdmServiceMetadata): ClassDeclarationStructure; /** * @internal * @param prop - Property type in Vdm form. * @returns Property type as string. */ export declare function getPropertyType(prop: VdmProperty): string;