/**
 * Interface representing a result item in search.
 */
export interface ResultItem {
    record: any;
    type: string;
    detailUrl: {
        link: string;
        external: boolean;
    };
}
