// This must not be used within core. It's in presentation layer, e.g. to be used in an API. export interface Presenter { present(input: InputDTO): void; getResponseModel(): ResponseModel | null; reset(): void; }