import type { ServerPluginExtends } from '../../types/server/plugin'; import type { ServerRunOptions } from './types'; export declare const createServer: () => { run: (options: ServerRunOptions) => Promise<{ serverContext: import("../..").InternalServerContext; }>; };