interface ServerOptions {
    path: string;
    port?: number;
}
export declare function startServer({ path, port }: ServerOptions): void;
export {};
