import type { ODataVersion } from '@sap-cloud-sdk/util'; import type { Import, CreateFileOptions } from '@sap-cloud-sdk/generator-common/internal'; import type { VdmMappedEdmType, VdmProperty } from '../../vdm-types'; /** * @internal */ export declare function odataImport(namedImports: string[], odataVersion: ODataVersion): Import; /** * @internal */ export declare function complexTypeImports(properties: VdmProperty[], options?: CreateFileOptions): Import[]; /** * @internal */ export declare function externalImports(properties: VdmMappedEdmType[]): Import[]; /** * @internal */ export declare function enumTypeImports(properties: VdmProperty[], options?: CreateFileOptions): Import[]; /** * @internal */ export declare function mergeImports(imports: Import[]): Import[];