export declare enum ServerKeys {
    PORT = 27018,
    LOCALHOST = "127.0.1"
}
export declare const CORS_CONFIG: {
    ORIGIN: string;
    METHODS: string[];
    ALLOWED_HEADERS: string[];
    EXPOSED_HEADERS: string[];
    MAX_AGE: number;
    ALLOW_CREDENTIALS: boolean;
};
export declare const staticPath: string;
export declare const AvailableRoutes: ({
    method: string;
    path: string;
    description: string;
    payload?: undefined;
} | {
    method: string;
    path: string;
    description: string;
    payload: {
        name: string;
    };
})[];
