import { type ReactNode } from 'react';
import DragHandle from './components/DragHandle';
import SortableItem from './components/SortableItem';
import type { SortableListProps } from './type';
export interface ISortableList {
    (props: SortableListProps): ReactNode;
    DragHandle: typeof DragHandle;
    Item: typeof SortableItem;
}
declare const SortableList: ISortableList;
export default SortableList;
