/** * Copyright (c) 2018-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal * @author Alexander Rose */ import { Volume } from '../../mol-model/volume.js'; import { Task } from '../../mol-task/index.js'; import { ModelFormat } from '../format.js'; import { Segmentation_Data_Database } from '../../mol-io/reader/cif/schema/segmentation.js'; export declare function volumeFromSegmentationData(source: Segmentation_Data_Database, params?: Partial<{ label: string; segmentLabels: { [id: number]: string; }; ownerId: string; }>): Task; export { SegcifFormat }; type SegcifFormat = ModelFormat; declare namespace SegcifFormat { function is(x?: ModelFormat): x is SegcifFormat; function create(segcif: Segmentation_Data_Database): SegcifFormat; }