import React from "react"; export interface SortableListProps { children: React.ReactElement[]; id: string; onChange?: (ids: number[]) => void; onItemRemoveRequest?: ({ id, index }: { id: string; index: number; }) => void; title?: string; } export declare function SortableList({ children, id, onChange, onItemRemoveRequest, title, }: SortableListProps): React.JSX.Element; interface SortableItemProps { children: React.ReactElement; sortableId: number; } export declare function SortableItem({ children }: SortableItemProps): React.ReactElement>; export {}; //# sourceMappingURL=SortableList.d.ts.map