import { SearchQueryTypes } from '../../../../../common/entities/SearchQueryDTO'; export declare class AutoCompleteRenderItem { text: string; preText: string; highLightText: string; postText: string; type: SearchQueryTypes; queryHint: string; notSearchable: boolean; constructor(text: string, searchText: string, type: SearchQueryTypes, queryHint: string, notSearchable?: boolean); }