import { ControllerGeneratorOptionsWithClient } from '../../comms/controller'; import { Chart } from '../../models/chart'; interface Request { query: { pinGroupHashId: string; } | { gridHashId: string; } | { edgeHashId: string; } | { pinHashId: string; }; } interface Response { lastMode: 'manual' | 'automatic'; charts: { automatic: Chart[]; manual: Chart[]; }; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClient; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };