import { ControllerGeneratorOptionsWithSupplier } from '../../comms/controller'; import { DeviceType } from '../../models/device-type'; import { CommandType } from '../../models/command-type'; import { Quantity } from '../../models/quantity'; interface Request { params: { hashId: string; }; } interface Response { deviceType: DeviceType; eventHandler: string; commandTypes: CommandType[]; subscriptionHashId?: string; chartQuantities: Quantity[]; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithSupplier; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };