import type { RsbuildConfig, RsbuildInstance } from '@rsbuild/core'; import { type UserConfig } from '@rspress/shared'; import type { PluginDriver } from './PluginDriver.js'; import type { RouteService } from './route/RouteService.js'; export declare function initRsbuild(rootDir: string, config: UserConfig, pluginDriver: PluginDriver, routeService: RouteService, enableSSG: boolean, extraRsbuildConfig?: RsbuildConfig): Promise;