import { SelectionMode } from '../types/selectionMode'; import { Ref } from 'vue'; import { TreeViewNodeMetaModel } from 'types/treeView'; export declare function useTreeViewConvenienceMethods(treeModel: Ref, treeMetaModel: Ref, radioGroupValues: Ref<{ [key: string]: any; }>, selectionMode: Ref): { findById: (targetId: string | null) => TreeViewNodeMetaModel | null; getCheckedCheckboxes: () => TreeViewNodeMetaModel[]; getCheckedRadioButtons: () => TreeViewNodeMetaModel[]; getMatching: (matcherFunction: (current: TreeViewNodeMetaModel) => boolean, maxMatches?: number) => TreeViewNodeMetaModel[]; getSelected: () => TreeViewNodeMetaModel[]; removeById: (targetId: string) => TreeViewNodeMetaModel | null; };