import type { PartialGlobalConfig } from '../../global-config/types';
import type { VuesticComponents } from '../types/components';
declare module 'vue' {
    interface GlobalComponents extends VuesticComponents {
    }
}
/**
 * Globally register all vuestic components and plugins
 * @notice using this method will bundle all vuestic components.
 * Use `createVuesticEssential` if you want tree shaking to work.
 */
export declare const createVuestic: import("../types").VuesticPluginFabric<[options?: {
    config?: PartialGlobalConfig | undefined;
} | undefined]>;
