import { PrimaryTableCol, TableRowData, TdPrimaryTableProps } from '../type'; import { TableClassName } from './useClassName'; export default function useRowSelect(props: TdPrimaryTableProps, tableSelectedClasses: TableClassName['tableSelectedClasses']): { selectedRowClassNames: import("@vue/composition-api").Ref; currentPaginateData: import("@vue/composition-api").Ref<{ [x: string]: any; children?: any[]; }[]>; setTSelectedRowKeys: (value: (string | number)[], options: import("../type").SelectOptions) => void; formatToRowSelectColumn: (col: PrimaryTableCol) => PrimaryTableCol; onInnerSelectRowClick: (context: import("../type").RowEventContext) => void; };