import React from 'react'; import { DataType, ColumnConfigType } from '../types/advanced-grid.types'; interface Props { columnName: string; columnsConfig: ColumnConfigType[]; rowData?: DataType; } /** * This component renders a cell for the table content * @param param0 * @author Alejandro Quiroz * @version 1.0.0 * @returns */ declare const CellRender: React.FC; export default CellRender;