/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Defines the cell content type.
 * Use this type to specify which filter component appears for a column,
 * or which built-in editor displays when a row enters edit mode.
 *
 */
export type CellContentType = 'text' | 'numeric' | 'boolean' | 'date';
