/** * Copyright (c) 2020-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import { DxFile } from '../../mol-io/reader/dx/parser.js'; import { Volume } from '../../mol-model/volume.js'; import { Task } from '../../mol-task/index.js'; import { ModelFormat } from '../format.js'; export declare function volumeFromDx(source: DxFile, params?: { label?: string; entryId?: string; }): Task; export { DxFormat }; type DxFormat = ModelFormat; declare namespace DxFormat { function is(x?: ModelFormat): x is DxFormat; function create(dx: DxFile): DxFormat; }