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