import { Ref } from 'vue'; interface UseAllowSearchOptions { compatPropNames?: readonly string[]; getCompatValue?: () => T | undefined; getDefaultValue?: () => T | undefined; } export declare const useAllowSearch: (allowSearch?: Ref, options?: UseAllowSearchOptions) => { mergedAllowSearch: import("vue").ComputedRef; }; export {};