import type { LineChartProps } from '@visactor/react-vchart'; import type { IMarkLineYSpec } from '@visactor/vchart/esm/component/marker/mark-line/interface/spec'; import React from 'react'; export interface LineProps extends Omit { id?: string; defaultMarkLine?: IMarkLineYSpec; } export declare function Line(props: LineProps): React.JSX.Element;