import { LiveBundleConfig, LiveBundle, PluginLoader, ServerOpts } from "./types"; export declare class LiveBundleImpl implements LiveBundle { private readonly pluginLoader; constructor(pluginLoader: PluginLoader); upload(config: LiveBundleConfig): Promise; live(config: LiveBundleConfig, opts?: ServerOpts): Promise; static buildLiveSessionMetadata(opts?: ServerOpts): string; }