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