import { DSLQuery } from '@lingxiteam/dsl/lib/core'; /** * 显示画布提示框 * @param param0 * @returns */ export declare const showPagezoneBorder: ({ pageZoneContainerId, compId, _borderPosition, DSLCore, }: { pageZoneContainerId: string; compId: string; _borderPosition: string; DSLCore: DSLQuery | undefined; }) => void; /** * 显示当前或父级hover效果 * @param target 触发事件对象 * @param DSLCore DSLQuery * @param pageZoneContainerId 画布id */ export declare const onHoverCompFromPageZone: (target: HTMLElement, DSLCore: any, pageZoneContainerId: string) => void; /** * 选中当前组件 * @param target 触发事件对象 * @param DSLCore DSLQuery * @param pageZoneContainerId 画布id */ export declare const onSelectCompFromPageZone: (target: HTMLElement, DSLCore: any, showSelectedBorder: (id: string) => void) => void;