import type { ComputedRef, Ref } from 'vue'; export declare const useTableExpand: (propsRef: ComputedRef, tableData: Ref, emit: EmitType) => { expandIconFnc: (props: any) => import("vue").VNode | undefined; getExpandOption: ComputedRef<{ expandedRowKeys?: undefined; onExpandedRowsChange?: undefined; } | { expandedRowKeys: string[]; onExpandedRowsChange: (keys: string[]) => void; }>; expandAll: () => void; expandRows: (keys: string[]) => void; collapseAll: () => void; };