import { ClientConn } from '@ticlo/core/editor'; import { DragState } from 'rc-dock/lib'; export declare function onDragBlockOver(conn: ClientConn, e: DragState): void; declare type CreateBlockCallback = (name: string, data: { [key: string]: any; }) => void; export declare function onDropBlock(conn: ClientConn, e: DragState, createBlock: CreateBlockCallback, bgElement: HTMLElement): void; export {};