/// import { SortableContainerProps } from 'react-sortable-hoc'; import { ListProps } from './List'; declare type Item = ListProps['items'][number]; export declare type SortableListProps = Pick, 'items' | 'children'> & Pick & { classes?: ListProps['classes']; onChange: (items: ListProps['items']) => void; }; declare const SortableList: { ({ classes, items, children, onSortEnd, onSortStart, onChange, lockAxis, distance, useDragHandle, pressDelay, useWindowAsScrollContainer, getContainer, }: SortableListProps): JSX.Element; defaultProps: { lockAxis: string; distance: number; children: ({ item, sortIndex }: { item: any; sortIndex: any; }) => JSX.Element; onSortStart: () => any; onSortEnd: () => any; }; }; export default SortableList; //# sourceMappingURL=SortableList.d.ts.map