import { ControllerGeneratorOptionsWithSupplier } from '../../comms/controller'; interface Request { body: { name: string; identifier: string; }; } interface Response { hashId: string; url: string; subscriptionHashId?: string; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithSupplier; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };