import { default as React } from 'react'; import { ConfigItemType, NestedRowPropsType, StandardTableProps } from './StandardTable.models'; type NestedRowProps>, FilterOptions> = NestedRowPropsType & Pick, 'hasCheckboxes'> & { hasCaretColumn?: boolean; leadingColumnCount?: number; newNestedRowToggle?: boolean; handleCheck?: (params: { checkboxValue: boolean; checkedItemData: DataItem; name?: string; isNestedRow?: boolean; parentDataKey?: DataItem[keyof DataItem]; }) => void; isChecked?: (data: DataItem) => DataItem | undefined; dataKey?: keyof DataItem; disableCheckboxes?: (data: DataItem) => boolean; }; declare const NestedRow: >, FilterOptions>({ data, nestedDataKey, nestedRowProps, hasCheckboxes, hasLeadingColumn, hasCaretColumn, leadingColumnCount, config, sortBy, customColumnProps, stickyTableConfig, selectedNestedRowData, totalRowKey, showStickyClasses, stickyRightCount, newNestedRowToggle, handleCheck, isChecked, dataKey, disableCheckboxes, }: NestedRowProps) => React.JSX.Element; export default NestedRow;