import { PropsTypes } from '@orca-fe/deye-typings'; import { XyChartProps } from '../xy-chart'; export interface LineChartProps extends XyChartProps { name?: string; keyField?: string; valueField?: string; data?: Record[]; } declare const LineChart: { (props: LineChartProps): JSX.Element; title: string; icon: JSX.Element; propsDef: PropsTypes[]; style: boolean; defaultProps: { data: { x: string; y: number; }[]; grid: { top: number; left: number; right: number; bottom: number; }; style: { height: number; }; title: { show: boolean; text: string; }; }; customEditorInBorder: (props: import("../../components/CommonHeightEditorInBorder").CommonHeightEditorInBorderProps) => JSX.Element; }; export default LineChart;