/**
 * @fileoverview Defines types related to search functionality in the Neo4j service.
 * @module src/services/neo4j/searchService/searchTypes
 */
/**
 * Type for search result items - Made generic
 */
export type SearchResultItem = {
    id: string;
    type: string;
    entityType?: string;
    title: string;
    description?: string;
    matchedProperty: string;
    matchedValue: string;
    createdAt?: string;
    updatedAt?: string;
    projectId?: string;
    projectName?: string;
    score: number;
};
