import { RefObject } from 'react'; import { IBlockType } from '../store/storetype'; export interface innerDragStateType { startX: number; startY: number; item: null | IBlockType; isDrag: boolean; ref: RefObject | null; current: number; lastClick: null | IBlockType; } export declare const innerDragState: innerDragStateType;