import { TIndexHandler } from '../../TYPES/IndexHandler';
import { TScriptIdIndex } from '../../TYPES/Store';
/**
 * Handles indexing of script IDs by associating them with metadata such as segment keys,
 * item indices, and derivative item indices (if applicable). This allows quick lookup
 * of script metadata based on their IDs.
 *
 * @returns {TIndexHandler<TScriptIdIndex>} An object containing methods to add rows to the index
 * and retrieve the indexed data.
 */
export declare const scriptIdIndexHandler: () => TIndexHandler<TScriptIdIndex>;
