/** * Extract item IDs from DOM elements using data-reorder-id attribute */ export declare const getIdsFromElements: (elements: Element[]) => string[]; /** * Compare two arrays of item IDs to check if they're different */ export declare const compareItemIds: (newIds: string[], currentIds: string[]) => boolean;