import React from "react"; import { DroppableIsVisiblePropType, DroppableOnDropPropType } from "../Droppable"; export interface HorizontalPropsType { type: string; onDrop: DroppableOnDropPropType; below?: boolean; isVisible?: DroppableIsVisiblePropType; } export declare const Horizontal: React.MemoExoticComponent<({ below, onDrop, isVisible, type }: HorizontalPropsType) => React.JSX.Element>;