import { Ref, WritableComputedRef, ComputedRef } from 'vue'; import { TableItem, TableRow } from './../types'; export declare function useTableSelect(selectable: Ref, selectedItems: Ref, isSelectedAll: Ref, innerTableItems: ComputedRef, computedTableItems: WritableComputedRef, rows: Ref, ctx: any): { isSelected: (id: string) => boolean; toggleSelect: (check: boolean, id: string) => void; };