import { type PropsWithChildren } from 'react'; import type { SparklineProps } from '../../core/components/sparkline-display/types/sparkline-props.js'; /** * Slot props for the sparkline component within SingleValueGrid. * @public */ export interface SingleValueGridSparklineProps extends Omit { /** Accessor function or string to retrieve the data for the sparkline. */ dataAccessor?: string; /** Accessor function to retrieve the color of the sparkline. */ colorAccessor?: string; } /** * @public */ export declare const Sparkline: ((props: PropsWithChildren) => null) & { XAxis: (_: import("../../index.js").SparklineXAxisProps) => null; YAxis: (_: import("../../index.js").SparklineYAxisProps) => null; };