import { ControllerGeneratorOptionsWithClientAndSupplier } from '../../comms/controller'; interface Request { body: { name: string; email: string; rights: string[]; }; } interface Response { hashId: string; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClientAndSupplier; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };