/** @packageDocumentation * @module TypeConverters */ import { Primitives, PropertyDescription } from "@bentley/ui-abstract"; import { TypeConverter } from "./TypeConverter"; /** * Enum Type Converter. * @public */ export declare class EnumTypeConverter extends TypeConverter { convertPropertyToString(propertyDescription: PropertyDescription, value?: Primitives.Enum): string | Promise; private getMatchingStringValue; private getPosition; sortCompare(a: Primitives.Enum, b: Primitives.Enum, ignoreCase?: boolean): number; } //# sourceMappingURL=EnumTypeConverter.d.ts.map