import { ComponentProps, FC } from "react"; import { CheckboxState } from "../ebay-tri-state-checkbox"; import type { TableSelectHandler, TableSortHandler, TableDensity, TableMode } from "./types"; export type EbayTableProps = Omit, "onSelect"> & { mode?: TableMode; allSelected?: CheckboxState; density?: TableDensity; frozenHeader?: boolean; a11ySelectAllText?: string; a11ySelectRowText?: string; onSelect?: TableSelectHandler; onSort?: TableSortHandler; }; declare const EbayTable: FC; export default EbayTable; //# sourceMappingURL=table.d.ts.map