import { default as React } from 'react'; import { RelationType } from '../types'; type ArcherElementProps = { /** * The id that will identify the Archer Element. */ id: string; relations?: Array; children: React.ReactElement, any>; }; declare const ArcherElement: ({ id, relations, children }: ArcherElementProps) => React.FunctionComponentElement; export default ArcherElement;