import { type ManagedServer, type ServerConfig, type StartManagedServerOptions } from '../../core/server-manager.js'; import { type StorybookIndex } from './index-json.js'; export type StorybookServer = { baseUrl: string; index: StorybookIndex; server: ManagedServer; }; export declare function startStorybookServer(config: ServerConfig, options?: StartManagedServerOptions): Promise;