import { FC } from 'react'; import { IDragState } from '../types'; interface DropZoneOverlayProps { dragState: IDragState; dropMessage?: string; } export declare const DropZoneOverlay: FC; export {};