/** * @packageDocumentation * @module TypeConverters */ import { Primitives, PropertyDescription } from "@bentley/ui-abstract"; import { TypeConverter } from "./TypeConverter"; /** * Navigation property type converter. * @public */ export declare class NavigationPropertyTypeConverter extends TypeConverter { convertPropertyToString(propertyDescription: PropertyDescription, value?: Primitives.Value): string; sortCompare(a: Primitives.Value, b: Primitives.Value, ignoreCase?: boolean): number; } //# sourceMappingURL=NavigationPropertyTypeConverter.d.ts.map