/** Core */ import { Generic } from "cmf.core/src/core"; /** Angular */ import { PipeTransform } from "@angular/core"; /** * Available font-sizes for text fields */ export declare enum FontSize { /** * Extra small (x-small) */ ExtraSmall = 0, /** * Small (small) */ Small = 1, /** * Normal, None, don't apply any size transformation */ Normal = 2, /** * Large (large) */ Large = 3, /** * Extra large (x-large) */ ExtraLarge = 4 } /** * Convert FontSize enum value (declared in propertyViewer) to CSS font-size (style.font-size). * * ### Example * * ``` *