/** * Copyright (c) 2019-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Volume } from '../../mol-model/volume.js'; import { Task } from '../../mol-task/index.js'; import { Vec3 } from '../../mol-math/linear-algebra.js'; import { Dsn6File } from '../../mol-io/reader/dsn6/schema.js'; import { ModelFormat } from '../format.js'; export declare function volumeFromDsn6(source: Dsn6File, params?: { voxelSize?: Vec3; label?: string; entryId?: string; }): Task; export { Dsn6Format }; type Dsn6Format = ModelFormat; declare namespace Dsn6Format { function is(x?: ModelFormat): x is Dsn6Format; function create(dsn6: Dsn6File): Dsn6Format; }