import { ControllerGeneratorOptionsWithClientAndSupplier } from '../../comms/controller'; import { CommandType } from '../../models/command-type'; interface Request { params: { hashId: string; }; } interface Response { commandType: CommandType; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClientAndSupplier; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };