import type { ComputedRef, InjectionKey } from 'vue'; import type { RouteLocale } from 'vuepress/client'; import type { ThemeData } from '../../shared/index.js'; export type ThemeLocaleDataRef = ComputedRef; export declare const themeLocaleDataSymbol: InjectionKey; export declare const useThemeLocaleData: () => ThemeLocaleDataRef; /** * Merge the locales fields to the root fields * according to the route path */ export declare const resolveThemeLocaleData: (theme: ThemeData, routeLocale: RouteLocale) => ThemeData;