import { ControllerGeneratorOptionsWithClient } from '../../comms/controller'; type HashId = string; declare const kindsResources: readonly ["pinGroups", "pins"]; type KindsResources = typeof kindsResources[number]; type Chart = { title: string | null; series: Array<{ quantityHashId: HashId; pinHashId: HashId; color: string | null; }>; }; type Panel = { lastMode?: 'manual' | 'automatic'; manualCharts?: Chart[]; }; type Request = { body: Partial>>; }; type Response = void; declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClient; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };