import { ControllerGeneratorOptionsWithClientAndSupplier } from '../../comms/controller'; interface Request { params: { sourceQuantityHashId: string; }; body: { targetQuantityHashId: string; }; } interface Response { hashId: string; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClientAndSupplier; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };