import type { Reader } from '@versatiles/container'; import type { ServerOptions } from './types.js'; export declare class Server { #private; constructor(source: Reader | string, options: Partial); getUrl(): string; start(): Promise; stop(): Promise; }