import { Row } from 'react-table'; import { TableHeightKeyType, TableLocalType, TableVariantType } from './TableUtils'; export type SingleSelectableContentProps = Record> = { rowHeight: TableHeightKeyType; separationLineVariant: TableVariantType; onRowSelected?: (row: Row) => void; selectedId?: string; locale?: TableLocalType; customItemKey?: (index: number, data: DATA_ROW) => string; hasScrollbar?: boolean; isLoadingMoreItems?: boolean; children?: (rows: JSX.Element) => JSX.Element; autoScrollToSelected?: boolean; }; export declare function SingleSelectableContent = Record>({ rowHeight, separationLineVariant, locale, selectedId, isLoadingMoreItems, onRowSelected, customItemKey, children, autoScrollToSelected, }: SingleSelectableContentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=SingleSelectableContent.d.ts.map