import { ControllerGeneratorOptionsWithClient } from '../../comms/controller'; import { SiNumber } from '../../models/si-number'; interface Body { pinHashId: string; quantityHashId: string; thresholds: { criticallyLow: SiNumber | null; low: SiNumber | null; high: SiNumber | null; criticallyHigh: SiNumber | null; } | null; } interface Request { body: Body | Body[]; } interface Response { hashId: (string | null) | (string | null)[]; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClient; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };