import { IGeometryInput } from "../../../../schema-definitions/datasources/eno/interfaces/IGeometryInput"; import { IGeometry } from "../../../../schema-definitions/models/eno/interfaces/IGeometry"; import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation"; export declare class EnoGeometryTransformation extends AbstractTransformation { private source; name: string; private indexMemory; constructor(source: string); protected transformInternal: (element: IGeometryInput) => IGeometry; private getIndex; }