import { ValidatorResult } from 'jsonschema'; import Restapify, { RestapifyParams, HttpVerb, RestapifyErrorName } from 'restapify'; export declare const getMethodOutput: (method: HttpVerb) => string; export declare const consoleError: (message: string) => void; export declare const getInstanceOverviewOutput: (port: number, apiBaseURL: string) => string; export declare const onRestapifyInstanceError: (error: RestapifyErrorName, instanceData: Pick) => void; export declare const getRoutesListOutput: (routesList: { route: string; method: HttpVerb; }[], apiBaseUrl: string) => string; export declare const runServer: (config: RestapifyParams) => void; export declare const validateConfig: (config: object) => ValidatorResult;