export interface EsriGeoJSONFeatureCollection {
    type: "FeatureCollection";
    features: any[];
    properties?: {
        exceededTransferLimit?: boolean;
    };
}
export default function pbfToGeoJSON(arrayBuffer: ArrayBuffer | Uint8Array | Buffer): EsriGeoJSONFeatureCollection;
export declare function decode(featureCollectionBuffer: any): EsriGeoJSONFeatureCollection;
