/// export interface Props { space?: number; size?: number; fillColor?: string; strokeColor?: string; isVertical?: boolean; idCustom?: string; borderShape?: number; } declare const ConnectorShapes: ({ space, size, fillColor, strokeColor, isVertical, idCustom, borderShape, }: Props) => JSX.Element; export default ConnectorShapes;