import React from "react"; import { Line as AntLine } from "@ant-design/plots"; declare type AntLineProps = typeof AntLine; export interface LineProps extends React.ComponentProps { others: any; } declare const Line: (props: LineProps) => JSX.Element; export default Line;