import { ɵInvertedKeysOfType } from '../../../../core'; import { ɵDragStrategyEnum } from '../../enums'; /** * Affects to move element by CSS axises properties. * A great choice for dragging absolute HTML elements **/ export declare class DragStrategyByAxisProperties { /** @internal */ readonly type = ɵDragStrategyEnum.ByAxisProperties; /** * Name of CSS property X-Axis from the left side of the HTML element. * * For example: `left`, `margin-left` **/ xAxisLeftStyleProperty: string; /** * Name of CSS property Y-Axis from the top side of the HTML element. * * For example: `top`, `margin-top` **/ yAxisTopStyleProperty: string; constructor(params?: ɵInvertedKeysOfType); }