import type { EventContext } from "@block-kit/utils"; /** * 阻止所有编辑器分发的事件 * @param event * @param context */ export declare const preventContextEvent: (event: Event, context: EventContext) => void; /** * 滚动到指定元素 * @param container * @param child */ export declare const scrollIfNeeded: (container: HTMLDivElement, child: Element, buffer?: number) => void;