import { IShapeDto } from "../../../../../schema-definitions/ropid-gtfs/interfaces/IShapeDto";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
import { IGeoJSONFeature } from "@golemio/core/dist/output-gateway";
export declare class PublicGtfsTripShapesTransformation extends AbstractTransformation<IShapeDto, IGeoJSONFeature> {
    name: string;
    protected transformInternal: (shape: IShapeDto) => IGeoJSONFeature;
}
