import { type Types } from '@cornerstonejs/core'; import type { ViewportLabelmapRenderMode } from '../../../../stateManagement/segmentation/helpers/getViewportLabelmapRenderMode.js'; import type { LabelmapRenderingConfig, Segmentation } from '../../../../types/SegmentationStateTypes.js'; import type { LabelmapRenderPlan } from './types.js'; declare function createLegacyVolumeLabelmapPlan({ config, isVolumeImageMapper, renderMode, segmentation, segmentationId, useSliceRendering, viewport, }: { config: LabelmapRenderingConfig; isVolumeImageMapper: boolean; renderMode: ViewportLabelmapRenderMode; segmentation: Segmentation; segmentationId: string; useSliceRendering: boolean; viewport: Types.IViewport; }): LabelmapRenderPlan; export { createLegacyVolumeLabelmapPlan };