/** * Default function used by `useArray` for defining the unique identifier of an item. * * @param index Array index of the item. * @param item Value of the item. * @returns A unique identifier string for this item. */ export declare function itemIdDefault(index: number, item: T): string;