import * as React from 'react'; import { BoxProps } from '../../box'; export interface DragnDropListProps extends BoxProps { droppableId?: string; } declare const DragnDropList: React.FC; export default DragnDropList;