import * as React from 'react'; import { type LineChartProps, type LineChartSlots, type LineChartSlotProps } from '@mui/x-charts/LineChart'; import { type ChartsToolbarProSlotProps, type ChartsToolbarProSlots } from "../ChartsToolbarPro/Toolbar.types.js"; import { type ChartsSlotPropsPro, type ChartsSlotsPro } from "../internals/material/index.js"; import { type ChartsContainerProProps } from "../ChartsContainerPro/index.js"; import { type LineChartProPluginSignatures } from "./LineChartPro.plugins.js"; export interface LineChartProSlots extends Omit, ChartsToolbarProSlots, Partial {} export interface LineChartProSlotProps extends Omit, ChartsToolbarProSlotProps, Partial {} export interface LineChartProProps extends Omit, Omit, 'series' | 'slots' | 'slotProps'> { /** * Overridable component slots. * @default {} */ slots?: LineChartProSlots; /** * The props used for each component slot. * @default {} */ slotProps?: LineChartProSlotProps; } /** * Demos: * * - [Lines](https://mui.com/x/react-charts/lines/) * - [Line demonstration](https://mui.com/x/react-charts/line-demo/) * * API: * * - [LineChart API](https://mui.com/x/api/charts/line-chart/) */ declare const LineChartPro: React.ForwardRefExoticComponent>; export { LineChartPro };