import React from "react"; import { DroppableOnDropPropType } from "./../Droppable"; export interface CenterProps { id: string; type: string; onDrop: DroppableOnDropPropType; children: React.ReactNode; isHighlighted: boolean; } export declare const Center: React.MemoExoticComponent<({ id, type, onDrop, children, isHighlighted }: CenterProps) => React.JSX.Element>;