import { Boundaries } from './types'; export declare const limitCoordinateToScreenBoundaries: (ele: HTMLElement, x: number, y: number, boundaries?: Boundaries) => number[]; export declare const dragElement: (ele: HTMLElement, triggerEle?: HTMLElement, keepVisible?: Boundaries) => void; export declare const addOnResize: (ele: HTMLElement) => void;