import type { ProTableProps } from '@ant-design/pro-components'; declare type RowSelection = ProTableProps['rowSelection']; interface RowSelectionReturn { config: RowSelection; getSelectedRows: () => Array>; } export default function useRowSelection(config: ProTableProps['rowSelection']): RowSelectionReturn; export {};