import { ControllerGeneratorOptionsWithClient } from '../../comms/controller'; import { AnalyticsPanel } from '../../models/analytics-panel'; interface Request { params: { hashId: string; }; } interface Response { panel: AnalyticsPanel; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClient; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };