import { FeatureCollection, GeometryObject } from 'geojson';
interface IOptions {
    completeFeature?: boolean;
    allFeatures?: boolean;
    renderTagged?: boolean;
    excludeWay?: boolean;
    suppressWay?: boolean;
}
declare function osm2geojson(osm: string | {
    [k: string]: any;
}, opts?: IOptions): FeatureCollection<GeometryObject>;
export = osm2geojson;
