import { ControllerGeneratorOptionsWithClient } from '../../comms/controller'; import { Grid } from '../../models/grid'; import { PinGroup } from '../../models/pin-group'; interface Request { params: { hashId: string; }; } interface Response { grid: Grid; pinGroups: PinGroup[]; lastReports: { pinGroupHashId: string; generatedAt: Date; }[]; notificationLevel: 0 | 1 | 2 | null; photo: string | null; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClient; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };