export default DraggableList; declare function DraggableList({ items, onSort, onClick }: { items: any; onSort: any; onClick: any; }): JSX.Element; declare namespace DraggableList { namespace propTypes { let items: PropTypes.Validator<(PropTypes.InferProps<{}> | null | undefined)[]>; let onSort: PropTypes.Validator<(...args: any[]) => any>; let onClick: PropTypes.Validator<(...args: any[]) => any>; } } import PropTypes from 'prop-types'; //# sourceMappingURL=DraggableList.d.ts.map