import { ComputedRef } from 'vue'; export declare function useSearch({ searchAttribute, }: { searchAttribute: string; }): ComputedRef<(option: unknown, query: string) => boolean>;