export type ServerOptions = {
    debug: boolean;
    port: number;
    host: string;
    cors: boolean;
};
export declare const cliStartServer: (options: ServerOptions) => void;
