///
import { TableRowSelection } from 'antd/es/table/interface';
import { ProTableProps } from '../../types';
export default function useSelectable(expandableConfig: ProTableProps['expandable']): {
toggleRowSelectionByClick: boolean;
handleRowSelectionByClick: (this: any, item: any) => void;
renderBatchToolbar: () => JSX.Element | null;
rowSelection: TableRowSelection | undefined;
};