/** * Copyright (c) 2018-2024 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal * @author Alexander Rose * @author Neli Fonseca */ import { StateTransformer } from '../../mol-state/index.js'; import { ParamDefinition as PD } from '../../mol-util/param-definition.js'; import { PluginStateObject as SO } from '../objects.js'; import { Asset } from '../../mol-util/assets.js'; export { Download }; export { DownloadBlob }; export { DeflateData }; export { RawData }; export { ReadFile }; export { ParseBlob }; export { ParseCif }; export { ParseCube }; export { ParsePsf }; export { ParsePrmtop }; export { ParseTop }; export { ParsePly }; export { ParseCcp4 }; export { ParseDsn6 }; export { ParseDx }; export { ImportString }; export { ImportJson }; export { ParseJson }; export { LazyVolume }; type Download = typeof Download; declare const Download: StateTransformer>; type DownloadBlob = typeof DownloadBlob; declare const DownloadBlob: StateTransformer[]; maxConcurrency: number | undefined; }>>; type DeflateData = typeof DeflateData; declare const DeflateData: StateTransformer>; type RawData = typeof RawData; declare const RawData: StateTransformer | number[]; label: string | undefined; }>>; type ReadFile = typeof ReadFile; declare const ReadFile: StateTransformer>; type ParseBlob = typeof ParseBlob; declare const ParseBlob: StateTransformer[]; }>>; type ParseCif = typeof ParseCif; declare const ParseCif: StateTransformer>; type ParseCube = typeof ParseCube; declare const ParseCube: StateTransformer>; type ParsePsf = typeof ParsePsf; declare const ParsePsf: StateTransformer>; type ParsePrmtop = typeof ParsePrmtop; declare const ParsePrmtop: StateTransformer>; type ParseTop = typeof ParseTop; declare const ParseTop: StateTransformer>; type ParsePly = typeof ParsePly; declare const ParsePly: StateTransformer>; type ParseCcp4 = typeof ParseCcp4; declare const ParseCcp4: StateTransformer>; type ParseDsn6 = typeof ParseDsn6; declare const ParseDsn6: StateTransformer>; type ParseDx = typeof ParseDx; declare const ParseDx: StateTransformer>; type ImportString = typeof ImportString; declare const ImportString: StateTransformer>; type ImportJson = typeof ImportJson; declare const ImportJson: StateTransformer>; type ParseJson = typeof ParseJson; declare const ParseJson: StateTransformer>; type LazyVolume = typeof LazyVolume; declare const LazyVolume: StateTransformer[]; }>>;