/// import Endpoint from './../../endpoint'; import HttpError from './../../http/error'; import ContentType from './../../http/enum/content-type'; declare type AllowedOutput = string | Buffer | object; declare class MockEndpoint extends Endpoint { protected process(): Promise; protected serializeError(_error: HttpError): Output; protected getResponseContentType(): ContentType; } export default MockEndpoint;