import { createGlobalConfig } from '../global-config';
import { PartialGlobalConfig } from '../types';
/** Provides global configuration to Vuestic components */
export declare const GlobalConfigPlugin: import("../../vue-plugin/types").VuesticPluginFabric<[config?: PartialGlobalConfig | undefined]>;
declare module 'vue' {
    interface ComponentCustomProperties {
        $vaConfig: ReturnType<typeof createGlobalConfig>;
    }
}
