import { DSLQuery } from '@lingxiteam/dsl'; import { DSLNode } from '@lingxiteam/dsl/lib/core/PropType'; import { ContextType } from '../propType'; /** * 处理删除控件之后事件 * 目前就只有对删除布局容器下所有子容器后对布局容器有特殊处理,后续有需要可自行更改 * @param isMobile * @param platformType * @param opts */ export declare const removeNodeAfter: (isMobile: boolean, platformType: ContextType['platformType'], opts: { DSLCore: DSLQuery; deleteComponents: any; parentNode?: DSLNode; }) => void; export default removeNodeAfter;