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