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