declare type CellProps = {
    alignment: "inherit" | "left" | "center" | "right" | "justify" | undefined;
    Cell: any;
    cellData: any;
    dataKey: string;
    handleClick: (data: object) => void;
    height?: number;
    rowData: any;
    rowIndex: number;
};
declare const Cell: (props: CellProps) => JSX.Element;
export default Cell;
