import MoveableGroup from "./MoveableGroup"; import { Able } from "./types"; import MoveableManager from "./MoveableManager"; import { IObject } from "@daybrush/utils"; export declare function triggerChildAble(moveable: MoveableGroup, able: T, type: keyof T & string, datas: IObject, eachEvent: ((movebale: MoveableManager, datas: IObject) => any) | IObject, callback?: (moveable: MoveableManager, datas: IObject, result: any, index: number) => any): any[]; export declare function directionCondition(target: HTMLElement | SVGElement): boolean;