import type { I18n } from 'vue-i18n'; export type ApiServicesConfig = { eventBus?: { $emit: (event: string, payload: unknown) => unknown; } | null; i18n?: I18n | null; }; export declare const config: ApiServicesConfig; export declare const setConfig: (conf: ApiServicesConfig) => void;