import * as React from 'react';
import { ScatterProps } from './Scatter';
export interface ScatterPlotSlotsComponent {
    scatter?: React.JSXElementConstructor<ScatterProps>;
}
export interface ScatterPlotSlotComponentProps {
    scatter?: Partial<ScatterProps>;
}
export interface ScatterPlotProps {
    /**
     * Overridable component slots.
     * @default {}
     */
    slots?: ScatterPlotSlotsComponent;
    /**
     * The props used for each component slot.
     * @default {}
     */
    slotProps?: ScatterPlotSlotComponentProps;
}
/**
 * Demos:
 *
 * - [Scatter](https://mui.com/x/react-charts/scatter/)
 * - [Scatter demonstration](https://mui.com/x/react-charts/scatter-demo/)
 *
 * API:
 *
 * - [ScatterPlot API](https://mui.com/x/api/charts/scatter-plot/)
 */
declare function ScatterPlot(props: ScatterPlotProps): React.JSX.Element | null;
declare namespace ScatterPlot {
    var propTypes: any;
}
export { ScatterPlot };
