/* eslint-disable */ import type ShellApi from '@shell/plugins/internal-api/shell/shell.api'; import { VuexStore } from '@shell/types/store/vuex'; export {}; declare module 'vue' { interface ComponentCustomProperties { t: { (key: string, args?: Record, raw?: boolean): string; (options: { k: string; raw?: boolean; tag?: string | Record; escapehtml?: boolean }): string; }, $t: { (key: string, args?: Record, raw?: boolean): string; (options: { k: string; raw?: boolean; tag?: string | Record; escapehtml?: boolean }): string; }, $store: VuexStore, $shell: ShellApi, } }