import React from "react";
import { VirtualTableProps } from "./VirtualTableProps";
/**
 * This is a Table component that allows displaying arbitrary data, not
 * necessarily related to entities or properties. It is the component
 * that powers the entity collections but has a generic API, so it
 * can be reused.
 *
 * @group Components
 */
export declare const VirtualTable: React.NamedExoticComponent<VirtualTableProps<any>>;
