import type { RspressPlugin } from '@rspress/core';
import { type DoomSite } from '../../shared/index.ts';
import type { ExportItem } from '../../types.ts';
export interface GlobalPluginOptions {
    version?: string;
    download?: boolean;
}
export interface GlobalVirtual extends GlobalPluginOptions {
    userBase: string;
    prefix?: string;
    sites?: DoomSite[];
    export?: ExportItem[];
}
export declare const globalPlugin: ({ version, download, }: GlobalPluginOptions) => RspressPlugin;
