/** * @jsxRuntime classic * @jsx jsx */ import type { Edge } from '@atlaskit/pragmatic-drag-and-drop-hitbox/types'; import type { CSSColor, CSSSize } from '../internal-types'; type LineType = 'terminal' | 'no-terminal' | 'terminal-no-bleed'; export declare function Line({ edge, gap, indent, strokeColor, strokeWidth, type, }: { edge: Edge; indent?: CSSSize; gap?: CSSSize; strokeColor?: CSSColor; strokeWidth?: CSSSize; type?: LineType; }): JSX.Element; export default Line;