import { ControllerGeneratorOptionsWithClient } from '../../comms/controller'; import { Chart } from '../../models/chart'; type HashId = string; declare const kindsHashIds: readonly ["pinGroupHashIds", "pinHashIds"]; type KindsHashIds = typeof kindsHashIds[number]; declare const kindsResources: readonly ["pinGroups", "pins"]; type KindsResources = typeof kindsResources[number]; type Request = { query: Partial>>; }; type Panel = { lastMode: 'manual' | 'automatic'; charts: { automatic: Chart[]; manual: Chart[]; }; }; type Response = Partial>>; declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClient; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };