import React from "react";
interface DropProps {
    children?: React.ReactNode;
    size?: [string, string];
}
/**容器、子元素放置区域 */
declare const Drop: React.FC<DropProps>;
export default Drop;
