/** * Copyright (c) 2018-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal * @author Alexander Rose */ import { DensityServer_Data_Database } from '../../mol-io/reader/cif/schema/density-server.js'; import { Volume } from '../../mol-model/volume.js'; import { Task } from '../../mol-task/index.js'; import { ModelFormat } from '../format.js'; export declare function volumeFromDensityServerData(source: DensityServer_Data_Database, params?: Partial<{ label: string; entryId: string; }>): Task; export { DscifFormat }; type DscifFormat = ModelFormat; declare namespace DscifFormat { function is(x?: ModelFormat): x is DscifFormat; function create(dscif: DensityServer_Data_Database): DscifFormat; }