import type { Types as coreTypes } from '@cornerstonejs/core';
import type { ModifySegmentation } from '../../types';
type OperationData = {
    path: coreTypes.Point2[];
    fillHole: boolean;
} & ModifySegmentation;
export declare function fillPath(enabledElement: coreTypes.IEnabledElement, operationData: OperationData, checkCrossing?: boolean): void;
export {};
