/** Core */ import { Generic } from "cmf.core/src/core"; /** Angular2 */ import { PipeTransform } from "@angular/core"; /** Nested components*/ import { EntityTypePropertyValueType as SimpleType } from "cmf.core/src/domain/extensions/caches/entityType"; export { SimpleType }; export declare class ConvertSimpleValue extends Generic implements PipeTransform { /** * Given a simple type and a value returns an adequate representation of that value * @param value Plain or complex value to convert * @param type Simple type used to convert the value * @param shortFormat Short format flag */ getValue(value: any, simpleType: SimpleType, shortFormat?: boolean): string; /** * Coverts a string to it's boolean value * @param string value to be converted */ private stringToBoolean; /** * Transform * @param value Value * @param args Args[0] = simpleType; Args[1] = shortFormat */ transform(value: any, ...args: any[]): any; } export declare class ConvertSimpleValueModule { }