/// import type { ValidatorType } from './core/Validator'; import type { IParseOptions } from 'qs'; import type _Vue from 'vue'; import BaseService from './core/BaseService'; import Validator from './core/Validator'; import './vue'; interface ModuleOptions { resetParameter?: boolean; parsedQs: IParseOptions; errorProperty?: string | 'errors' | 'message'; } declare class AxiosHttp { installed: boolean; install(Vue: typeof _Vue, options?: Partial): void; } export * from './util'; export type { ValidatorType, ModuleOptions }; export { Validator, BaseService }; declare const _default: AxiosHttp; export default _default;