import { Row } from 'react-table'; import { TableHeightKeyType, TableLocalType, TableVariantType } from './TableUtils'; type MultiSelectableContentProps = Record> = { onMultiSelectionChanged?: (rows: Row[]) => void; onSingleRowSelected?: (row: Row) => void; onToggleAll?: (selected: boolean) => void; rowHeight?: TableHeightKeyType; separationLineVariant?: TableVariantType; locale?: TableLocalType; customItemKey?: (index: number, data: DATA_ROW) => string; hasScrollbar?: boolean; isLoadingMoreItems?: boolean; children?: (rows: JSX.Element) => JSX.Element; }; /** * FIXME Need to spend time to change the type to something like this */ export declare const MultiSelectableContent: = Record>({ onMultiSelectionChanged, onSingleRowSelected, onToggleAll, rowHeight, separationLineVariant, locale, customItemKey, isLoadingMoreItems, children, }: MultiSelectableContentProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=MultiSelectableContent.d.ts.map