import { ComputedNodeStyle, ElementShape } from '@likec4/core/types'; type RequiredData = { shape: ElementShape; width: number; height: number; style?: ComputedNodeStyle; }; type ElementShapeProps = { data: RequiredData; width?: number | undefined; height?: number | undefined; /** * @default true */ showSelectionOutline?: boolean | undefined; }; export declare function ElementShape({ data, width, height, showSelectionOutline }: ElementShapeProps): import("react/jsx-runtime").JSX.Element; export {};