import { PatchColor } from "../patch/VuiPatch";
type Props = {
    data: Array<Record<string, string | number>>;
    dataKey: string;
    variant?: "line" | "bar";
    color?: PatchColor;
    curved?: boolean;
    width?: number;
    height?: number;
    "data-testid"?: string;
};
export declare const VuiSparkline: ({ data, dataKey, variant, color, curved, width, height, ...rest }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
