import type { App } from 'vue'; import { TolgeeInstance, TFnType, DefaultParamType, TranslationKey } from '@tolgee/web'; type Options = { tolgee?: TolgeeInstance; enableSSR?: boolean; }; export declare const VueTolgee: { install(app: App, options?: Options): void; }; declare module 'vue' { interface ComponentCustomProperties { $t: TFnType; $tolgee: TolgeeInstance; } } export {};