import { FrameworkSearchAggregationInterface } from './frameworkSearchAggregationInterface'; import { FrameworkSearchDocumentInterface } from './frameworkSearchDocumentInterface'; import { FrameworkSearchSearchCriteriaInterface } from './frameworkSearchSearchCriteriaInterface'; export interface FrameworkSearchSearchResultInterface { items: Array; aggregations: FrameworkSearchAggregationInterface; searchCriteria: FrameworkSearchSearchCriteriaInterface; totalCount: number; }