import CartesianChartContextRootWidget from "../../common/CartesianChart/CartesianChartContextRootWidget"; import type { Custom } from "./types"; import * as defaultComponents from "./components/default"; import { Dependencies } from "../../common/CartesianChart/types"; import { Scale } from "../../common/CartesianChart/util"; declare class LineChart extends CartesianChartContextRootWidget { get dependencies(): Dependencies; mergeWithDefaultCustom(custom: Partial): Custom; get scale(): Scale; } declare const _default: (props_0: { custom?: Partial; theme?: import("../../utils").DeepPartial; data: import("../../common/CartesianChart/types").Data; scale?: import("../../utils").DeepPartial; }) => LineChart; export default _default; export { defaultComponents as DefaultComponents };