import { AxiosInstance } from "axios"; declare module 'vue/types/vue' { interface Vue { $axios: AxiosInstance; $ovdashboard: { api_url: (endpoint?: string) => string; fail: (name: string) => ((arg0: unknown) => void); api_query_simple: ( endpoint: string, on_success: (data: unknown) => void ) => void; api_query_simple_string: ( endpoint: string, on_success: (data: string) => void ) => void; api_query_simple_list: ( endpoint: string, on_success: (data: string[]) => void ) => void; api_query_simple_object: ( endpoint: string, on_success: (data: Record) => void ) => void; } } } export { };