import Moveable, { MoveableInterface, MoveableProperties } from 'moveable';
import { MethodInterface } from 'framework-utils';
import { NgxMoveableEvents } from './types';
export declare class NgxMoveableInterface {
    protected moveable: Moveable;
}
export interface NgxMoveableInterface extends NgxMoveableEvents, MoveableProperties, MethodInterface<MoveableInterface, Moveable, NgxMoveableInterface, {
    dragStart: 'ngDragStart';
}> {
}
