import { ServerTypes } from "./types";
/**
 * This function represent an interface of a Server.
 * You are allowed to add routes which wil be accesible on the path "/api"
 *
 * @returns
 */
export declare const Server: () => ServerTypes;
