import { ControllerGeneratorOptionsWithClientAndSupplier } from '../../comms/controller'; interface Request { body: { hashIds: string[]; }; } type ValidResponse = { hashId: string; deleted: true; }; type ErrorResponse = { hashId: string; deleted: false; failureReason: string; }; type Response = Array; declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClientAndSupplier; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };