/** * Copyright (c) 2017-2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * From CIFTools.js * @author David Sehnal */ import { EncodedData } from './encoding.js'; /** * Fixed point, delta, RLE, integer packing adopted from https://github.com/rcsb/mmtf-javascript/ * by Alexander Rose , MIT License, Copyright (c) 2016 */ export declare function decode(data: EncodedData): any[];