import * as React from 'react';
import { type SeriesId } from '@mui/x-charts/internals';
import type { PreviewPlotProps } from "./PreviewPlot.types.js";
interface LinePreviewPlotProps extends Pick<PreviewPlotProps, 'axisId'> {}
export declare function LinePreviewPlot({
  axisId
}: LinePreviewPlotProps): import("react/jsx-runtime").JSX.Element;
export interface PreviewLineElementProps extends Omit<React.SVGProps<SVGPathElement>, 'ref' | 'color' | 'id'> {
  id: SeriesId;
  gradientId?: string;
  color: string;
  d: string;
}
export {};