import { ControllerGeneratorOptionsWithClient } from '../../comms/controller'; interface Request { query: { pinGroupHashId: string; } | { gridHashId: string; } | { edgeHashId: string; } | { pinHashId: string; }; body: { lastMode?: 'manual' | 'automatic'; manualCharts?: { title: string | null; series: { quantityHashId: string; pinHashId: string; color: string | null; }[]; }[]; }; } type Response = void; declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClient; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };