import { ReactNode } from 'react'; interface SortableProps { children: ReactNode; emptyItem: any; list: any[]; setList: (list: any[]) => void; buttonText?: string; } export default function Sortable({ children, emptyItem, list, setList, buttonText, }: SortableProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map