/**
 * Simple search result type
 */
export interface SearchResult {
    type: string;
    id: string;
}
