import { ControllerGeneratorOptionsWithClientAndSupplier } from '../../comms/controller'; import { Command } from '../../models/command'; import { PinGroup } from '../../models/pin-group'; import { CommandType } from '../../models/command-type'; import { TableQuery, EffectiveTableQuery } from '../../comms/table-controller'; interface Query extends TableQuery { pinGroupHashId?: string | null; edgeHashId?: string | null; gridHashId?: string | null; mapLayers?: string[] | null; } type Request = { query?: Query; } | undefined; interface EffectiveQuery extends EffectiveTableQuery { pinGroupHashId: string | null; edgeHashId: string | null; gridHashId: string | null; } interface EffectiveRequest { query: EffectiveQuery; } interface ResponseRow { command: Command; commandType: CommandType; pinGroup: PinGroup | null; } interface Response { nextPageOffset: string | null; rows: ResponseRow[]; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClientAndSupplier; export { controllerGeneratorOptions, Request, EffectiveRequest, Response, Query, ResponseRow, };