import type { ObjectPropertyPath } from "@octopusdeploy/type-utils"; import type { ChartStrokeColor } from "./chartColors"; export interface SparklineChartProps { data: TResource[]; dataKey: ObjectPropertyPath; color: ChartStrokeColor; } export declare function SparklineChart({ data, dataKey, color }: SparklineChartProps): import("react/jsx-runtime").JSX.Element;