import Dragger from '../../Dragger'; import { Action } from 'sabar'; /** * * @param {*} param0 * @param {*} ctx * @param {*} actions * * Difference between `targetContainer` and `impactContainer`... * `impactContainer` is bound with `impactDragger`. There is a situation * point is in the gap between dragger and container... */ declare const getContainer: ({ event, dragger, }: { event: MouseEvent; dragger: Dragger; }, ctx: object, actions: Action) => void; export default getContainer;