import { ɵInvertedKeysOfType } from '../../../../core'; import { ɵDragStrategyEnum } from '../../enums'; /** * Affects to move element by CSS `transform: translate3d` function. * A great choice for dragging HTML elements with any positioning **/ export declare class DragStrategyByTranslate3d { /** @internal */ readonly type = ɵDragStrategyEnum.ByTranslate3d; /** Forbids to drag by X-Axis */ isLockAxisX?: boolean; /** Forbids to drag by Y-Axis */ isLockAxisY?: boolean; constructor(params?: ɵInvertedKeysOfType); }