export default SlaveTable;
/**
 * Tables that share the same items, selection, etc. with a (Master) Table component,
 * but can differ in these ways:
 * - Visible columns
 * - Column widths
 * - Pagination component
 * - Class name of container and rows
 * - Loading indicator
 * - Empty placeholder
 *
 * @name Components.SlaveTable
 * @type {React.FC<import("../types/TableProps").SlaveTableProps>}
 */
declare const SlaveTable: React.FC<import("../types/TableProps").SlaveTableProps>;
import React from "react";
