import { PatchColor } from "../patch/VuiPatch";
export type ScatterSeries = {
    data: Array<Record<string, number>>;
    name?: string;
    color?: PatchColor;
};
type Props = {
    series: ScatterSeries[];
    xKey?: string;
    yKey?: string;
    height?: number;
    showLegend?: boolean;
    showGrid?: boolean;
    showTooltip?: boolean;
    "data-testid"?: string;
};
export declare const VuiScatterChart: ({ series, xKey, yKey, height, showLegend, showGrid, showTooltip, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
