import React from 'react';
interface Props {
    cellData?: unknown;
}
declare const Cell: React.FC<Props>;
export default Cell;
