import { EntityDefinitionResource } from "../entity-definition-resource"; import { EntityResource } from "../entity-resource"; import OptionListResource from "../option-lists/option-list-resource"; import Resource from "../resource"; import { IAggregatedEntityResource } from "./aggregated-entity-resource"; /** * Represents a data schema / domain model for an aggregate resource. */ export declare class AggregateResource extends Resource { definitions: Array; optionLists?: Array; items: Array; settingByCategory?: Record>; getDefinitionResources(): Array; getEntityResources(): Array; }