/** * Get the value to be set in the cell. * * @param {*} value Initial value. * @param {object} cellMeta The cell meta object. * @returns {*} The value to be set in the cell. */ export declare function getValueSetterValue(value: unknown, cellMeta: Record): unknown; /** * Get the value to be displayed in the cell. * * @param {*} value Initial value. * @param {object} cellMeta The cell meta object. * @returns {*} The value to be displayed in the cell. */ export declare function getValueGetterValue(value: unknown, cellMeta: Record): unknown;