export interface SortableItem { id: string; label: string; description?: string; meta?: string; disabled?: boolean; } type SortableSize = 'sm' | 'md'; type SortableVariant = 'card' | 'plain'; interface SortableListProps { items?: SortableItem[]; size?: SortableSize; variant?: SortableVariant; showIndex?: boolean; class?: string; onreorder?: (items: SortableItem[]) => void; } declare const SortableList: import("svelte").Component; type SortableList = ReturnType; export default SortableList;