import { IDataSet } from "../../../doc/IDataSet";
import { ISearchMatchLocation } from "./ISearchMatchLocation";
/**
 * This interface defines the information that is stored in the download data set API return object
 */
export interface ISearchItem extends IDataSet {
    /**
     * The short content of the member
     */
    matchList?: ISearchMatchLocation[];
}
//# sourceMappingURL=ISearchItem.d.ts.map