import { FC } from 'react'; export interface DraggableListProps { items: Record[]; onChange?: () => void; } export declare const DraggableList: FC; export default DraggableList;