import { PropertyConfiguration, PropertyValue } from "@omnia/fx-models";
export declare abstract class PropertyValuePrimitiveConverter {
    abstract toPrimitiveString(propertyValue: PropertyValue): string;
    abstract toDisplayString(propertyValue: PropertyValue, propertyConfiguration?: PropertyConfiguration<any>): Promise<string>;
}
