/**
 * Cell-text token primitives shared by several Styled Column types
 * (Percent Bar, Gradient, Bullet Chart, Range Bar, Rating) when configuring
 * what to display as text overlay / tooltip content.
 */
/**
 * Text optionally to show in a Special Column Style special style: 'CellValue' or 'PercentageValue'
 */
export type CellTextOption = 'CellValue' | 'PercentageValue';
/**
 * Array of CellTextOption available in Special Column Styles
 */
export type CellTextOptions = CellTextOption[];
