import { DiagramEdge } from '@likec4/core/types'; import { PropsWithChildren } from 'react'; import { UndefinedOnPartialDeep } from 'type-fest'; import { BaseEdgePropsWithData } from '../../base/types'; type Data = UndefinedOnPartialDeep>; type EdgeContainerProps = PropsWithChildren & { component?: 'g' | 'svg' | undefined; className?: string | undefined; }>; export declare function EdgeContainer({ className, component, selectable, selected, data: { color, hovered: isHovered, active: isActive, dimmed: isDimmed, ...data }, animated, children, style, }: EdgeContainerProps): import("react/jsx-runtime").JSX.Element; export {};