import type { VirtualTableColumn, VirtualTableRowSelection } from "../type"; import type { StringKey } from "../../../internal/type"; interface Props { columns: VirtualTableColumn[]; dataSource: RowType[]; rowSelection?: VirtualTableRowSelection; rowKey: "index" | StringKey; } export declare const useRowSelection: ({ columns, dataSource, rowSelection, rowKey }: Props) => VirtualTableColumn[]; export {};