import type { TableProps } from 'antd'; import type React from 'react'; export declare const useRowSelection: (rowKey?: React.Key | ((record: any) => React.Key) | undefined, rowSelection?: TableProps['rowSelection']) => (import("antd/lib/table/interface").TableRowSelection & { selectedRows: any[]; clear: () => void; reverse: () => void; }) | undefined;