import { BaseNodePropsWithData } from '../../../base'; import { RelationshipDetailsTypes } from '../_types'; export declare function ElementNode(props: RelationshipDetailsTypes.NodeProps<'element'>): import("react").JSX.Element; export declare function CompoundNode(props: RelationshipDetailsTypes.NodeProps<'compound'>): import("react").JSX.Element; type ElementPortsProps = BaseNodePropsWithData>; export declare function ElementPorts({ data: { ports, height: h } }: ElementPortsProps): import("react").JSX.Element; type CompoundPortsProps = BaseNodePropsWithData>; export declare function CompoundPorts({ data }: CompoundPortsProps): import("react").JSX.Element; export {};