import type { Types } from '@cornerstonejs/core'; export interface ImageDataWithDirection { getDirection(): number[]; } export declare function extractVolumeDirectionVectors(imageData: ImageDataWithDirection): { xDir: Types.Point3; yDir: Types.Point3; zDir: Types.Point3; };