import LogicFlow from 'flow-lcl/core'; declare type ShapeItem = { type?: string; text?: string; icon?: string; className?: string; properties?: Record; callback?: string; }; declare class DndPanel { lf: LogicFlow; shapeList: ShapeItem[]; panelEl: HTMLDivElement; constructor({ lf }: { lf: any; }); render(lf: any, domContainer: any): void; private createDndItem; } export { DndPanel, };