import { JSONSchema } from "../../route"; export interface Presenter { readonly outputJSONSchema: () => JSONSchema | { $ref: string; }; readonly present: (input: Input) => Promise | Output; }