/** * Copyright (c) 2025 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import { Table } from '../../mol-data/db.js'; export declare const JSONCifVERSION = "0.1.0"; export interface JSONCifFile { version: string; encoder: string; dataBlocks: JSONCifDataBlock[]; } export interface JSONCifDataBlock { header: string; categoryNames: string[]; categories: Record; } export interface JSONCifCategory = Record> { name: string; fieldNames: string[]; rows: T[]; } export declare function getJSONCifCategory(block: JSONCifDataBlock, name: string): JSONCifCategory> | undefined;