import * as React from 'react';
import { LineElementProps } from './LineElement';
export interface LinePlotSlotsComponent {
    line?: React.JSXElementConstructor<LineElementProps>;
}
export interface LinePlotSlotComponentProps {
    line?: Partial<LineElementProps>;
}
export interface LinePlotProps extends React.SVGAttributes<SVGSVGElement>, Pick<LineElementProps, 'slots' | 'slotProps'> {
}
/**
 * Demos:
 *
 * - [Lines](https://mui.com/x/react-charts/lines/)
 * - [Line demonstration](https://mui.com/x/react-charts/line-demo/)
 *
 * API:
 *
 * - [LinePlot API](https://mui.com/x/api/charts/line-plot/)
 */
declare function LinePlot(props: LinePlotProps): React.JSX.Element | null;
declare namespace LinePlot {
    var propTypes: any;
}
export { LinePlot };
