/* eslint-disable */ import type ShellApi from '@shell/plugins/internal-api/shell/shell.api'; 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: { getters: Record, dispatch: (action: string, payload?: any) => Promise, commit: (mutation: string, payload?: any) => void, }, $shell: ShellApi, } }