/**
 * Merge an array of geobufs together
 *
 * @export
 * @param {Uint8Array[]} geobufs
 * @return {Uint8Array[]} The merged geobuf
 */
declare function mergeGeobufs(geobufs: Uint8Array[]): Uint8Array;

export { mergeGeobufs };
