import * as React from 'react'; import { DraggableProps } from '../DragAndDrop/Draggable'; import {PropsWithChildren} from "react"; export interface SortableListProps extends DraggableProps { dataHook?: string; insertPosition?: SortableListInsertPosition; usePortal?: boolean; dragPreview?: boolean; items?: object[]; className?: string; contentClassName?: string; } export default class SortableList extends React.PureComponent> {} export type SortableListInsertPosition = 'start' | 'end' | 'any';