import { Ref } from "vue";
export declare function useComboTreeSearch(options: {
    comboEditorRef: any;
    dataSource: any;
    searchFields: Ref<any>;
    originalValue: any;
    showPopover: any;
    flatTreeNodes: any;
}, idField: string): {
    onValueChange: ($event: any) => void;
    resetDataSource: () => void;
};
