import { ComputedRef, MaybeRef, ShallowRef } from "vue"; import { SearchBoxLocales, SearchLocaleOptions } from "../../shared/index.js"; //#region src/client/composables/locale.d.ts declare function useLocale(locales: MaybeRef): ComputedRef>; //#endregion //#region src/client/composables/searchIndex.d.ts type SearchIndexData = Record Promise<{ default: string; }>>; declare function useSearchIndex(): ShallowRef; //#endregion export { useLocale, useSearchIndex };