import type { MapStringTo } from "../../base-types"; import { EntityResource } from "../entity-resource"; import { RelationResource } from "../relation-resource"; export interface IAggregatedEntityResource { entity: EntityResource; relations: MapStringTo; } export declare class AggregatedEntityResource implements IAggregatedEntityResource { entity: EntityResource; relations: MapStringTo; }