import type { ComputedRef } from 'vue'; import type { BasicTableProps, TableEmitType } from '../types/table'; declare type Recordable = Record; interface Options { setSelectedRowKeys: (keys: string[]) => void; getSelectRowKeys: () => string[]; clearSelectedRowKeys: () => void; emit: TableEmitType; getAutoCreateKey: ComputedRef; } export declare function useCustomRow(propsRef: ComputedRef, { setSelectedRowKeys, getSelectRowKeys, getAutoCreateKey, clearSelectedRowKeys, emit }: Options): { customRow: (record: Recordable, index: number) => { onClick: (e: Event) => void; onDblclick: (event: Event) => void; onContextmenu: (event: Event) => void; onMouseenter: (event: Event) => void; onMouseleave: (event: Event) => void; }; }; export {};