/// import { FTLTableCellProps, FTLTableRowProps, FTLTableProps, FTLTableFooterProps, TableContext, FTLTableBodyProps, FTLPaginationButtonProps, SortDirectionKeys, UpdateTableAction, ResetTableAction, TableState, TableAction } from "../../"; export { FTLTableCellProps, FTLTableRowProps, FTLTableProps, FTLTableFooterProps, TableContext, FTLTableBodyProps, FTLPaginationButtonProps, SortDirectionKeys, UpdateTableAction, ResetTableAction, TableState, TableAction, }; export { CachedTableContextProvider } from "./CachedTableContextProvider"; export { ContextTable } from "./ContextTable"; export { FTLPaginationButton } from "./FTLPaginationButton"; export { FTLTableBody } from "./FTLTableBody"; export { FTLTableCell } from "./FTLTableCell"; export { FTLTableRow } from "./FTLTableRow"; export declare const FTLTable: ({ showHeader, showFooter, columns, data, isFetching, hasData, isSearching, pageCount, rowHeight, type, context, rowDisable, onRowClick, onFetchData, }: FTLTableProps) => JSX.Element;