import { Type } from "igniteui-webcomponents-core"; /** * Indicates how to decorate cell text. */ export declare enum TextCellDecoration { /** * No decorations are applied. */ None = 0, /** * Draws a line through the middle of the text. */ Strikethrough = 1, /** * Draws a line above the text. */ Overline = 2, /** * Draws a line beneath the text. */ Underline = 3 } /** * @hidden */ export declare let TextCellDecoration_$type: Type;