import React from 'react'; import { IBlockData, RecursivePartial } from '@ivanholiak/easy-email-core'; export interface DragIconProps { type: string; payload?: RecursivePartial; color: string; } export declare function DragIcon(props: DragIconProps): React.JSX.Element;