import type { ConvertedMetadata, RawMetadata } from '@sap-ux/vocabularies-types'; export declare const CONVERTER_ROOT: unique symbol; export type CollectionType = 'PropertyPath' | 'Path' | 'If' | 'Apply' | 'Null' | 'And' | 'Eq' | 'Ne' | 'Not' | 'Gt' | 'Ge' | 'Lt' | 'Le' | 'Or' | 'AnnotationPath' | 'NavigationPropertyPath' | 'Record' | 'String' | 'EmptyCollection'; /** * Convert a RawMetadata into an object representation to be used to easily navigate a metadata object and its annotation. * * @param rawMetadata * @returns the converted representation of the metadata. */ export declare function convert(rawMetadata: RawMetadata): ConvertedMetadata; //# sourceMappingURL=converter.d.ts.map