import React from "react";
import { CellRendererParams, VirtualTableColumn } from "./VirtualTableProps";
type VirtualTableCellProps<T extends any> = {
    dataKey: string;
    column: VirtualTableColumn;
    columns: VirtualTableColumn[];
    rowData: any;
    cellData: any;
    rowIndex: any;
    columnIndex: number;
    cellRenderer: React.ComponentType<CellRendererParams<T>>;
};
export declare const VirtualTableCell: React.NamedExoticComponent<VirtualTableCellProps<any>>;
export {};
