import { ControllerGeneratorOptionsWithSupplier } from '../../comms/controller'; import { SupplierWebhook } from '../../models/supplier-webhook'; interface Request { params: { hashId: string; }; } interface Response { webhook: SupplierWebhook; identifier: string; url: string; subscriptionHashId?: string; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithSupplier; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };