import { IDedBuildingSearchRow } from "../repositories/interfaces/IDedBuildingSearchRow"; import { IDedBuildingSearchResult } from "../routers/interfaces/IDedBuildingSearchResponse"; import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation"; /** * Maps a scored search row to the response shape. All coordinates arrive from PostGIS already in * EPSG:4326, so nothing here does coordinate math. */ export declare class DedBuildingSearchTransformation extends AbstractTransformation { name: string; protected transformInternal: (element: IDedBuildingSearchRow) => IDedBuildingSearchResult; }