import { TIndexHandler } from '../../TYPES/IndexHandler';
import { TSearchStringIndex } from '../../TYPES/Store';
/**
 * Handles indexing of searchable strings for scripts, organizing them by
 * search priority into chunked groups. This is useful for efficient search
 * and retrieval operations.
 *
 * @returns {TIndexHandler<TSearchStringIndex>} An object containing methods to add rows to the index
 * and retrieve the indexed data.
 */
export declare const searchStringIndexHandler: () => TIndexHandler<TSearchStringIndex>;
