import { ControllerGeneratorOptionsWithClient } from '../../comms/controller'; interface Request { body: ({ type: 'pinGroup'; hashId: string; geometry: { type: 'Point'; coordinates: [number, number]; } | null; } | { type: 'node'; hashId: string; geometry: { type: 'Point'; coordinates: [number, number]; }; } | { type: 'edge'; hashId: string; geometry: { type: 'LineString'; coordinates: [number, number][]; } | { type: 'MultiLineString'; coordinates: [number, number][][]; }; })[]; } type Response = void; declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClient; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };