import { OsmObject } from "./osm-object.js";
import type { RefElements } from "./ref-elements.js";
import type { Feature, GeometryObject } from "geojson";
export declare class Output extends OsmObject {
    private geometry;
    constructor(type: string, id: string, refElems: RefElements);
    setGeometry(geometry: GeometryObject): void;
    toFeature(): Feature | undefined;
}
