/// import { ViewProps } from "../View"; import { Props as ConnectorProps } from "./Connector"; export interface ConnectingShapesProps { content: any[]; colorBorderShape?: string | null; colorShape?: string; colorText?: string; borderShape?: number; containerProps?: ViewProps; connectorProps?: ConnectorProps; } declare const ConnectingShapes: ({ content, colorText, colorShape, colorBorderShape, borderShape, containerProps, connectorProps, }: ConnectingShapesProps) => JSX.Element; export default ConnectingShapes;