import { ControllerGeneratorOptionsWithClient } from '../../comms/controller'; import { FieldsToServerUpdate } from '../../models/fields/fields-to-server-update'; import { Pin } from '../../models/pin'; import { Grid } from '../../models/grid'; interface Request { params: { hashId: string; }; body: { fields?: FieldsToServerUpdate; edgeHashId?: string | null; pinGridsHashIds?: string[]; }; } interface Response { pin: Pin; grids: Grid[]; } declare const controllerGeneratorOptions: ControllerGeneratorOptionsWithClient; export { controllerGeneratorOptions, Request, Request as EffectiveRequest, Response, };