export interface BlockBaseProps { draggable?: boolean; icon: React.ReactNode; draggableLabel: string; label: string; } export declare const BlockBase: ({ draggable, icon, draggableLabel, label }: BlockBaseProps) => import("react/jsx-runtime").JSX.Element;