import React, { FC } from "react"; import { EntitySet, Singleton } from "../entities/entity-container.js"; interface SingletonProps { Name: string | undefined; Type: string; children?: any; } declare const Singleton: (props: SingletonProps) => React.DOMElement; interface EntitySetProps { Name: string | undefined; EntityType: string; children?: any; } declare const EntitySet: (props: EntitySetProps) => React.DOMElement; export declare const EntityContainerElement: FC<{ name: string | undefined; singletons: Map; entitySets: Map; agsAttributes: Record; }>; export {}; //# sourceMappingURL=entity-container-element.d.ts.map