/** * Copyright (c) Microsoft. All rights reserved. */ import { ISvgRenderer, ISvgRendererProps } from '../../../types/labelerTypes'; export type RelationSvgRendererProps = ISvgRendererProps & { /** * Controls whether the arrowhead should be at the start * or the end of the line. If `true`, the arrowhead should * be draw at the start of the line and vice versa. * * @default false */ isReversed?: boolean; }; export declare const RelationSvgRenderer: ISvgRenderer;