import { ISuggestValue } from './suggestValue'; /** * UiSuggest item with data schema. * * @export */ export interface ISuggestValueData extends ISuggestValue { /** * Data associated to the entry item. * */ data?: T; }