import { type CSSProperties } from 'react'; import { type MaskingProps } from '@dynatrace/strato-components/core'; import type { SparklineProps } from './types/sparkline-props.js'; import type { SparklineThresholdProps } from './types/sparkline-thresholds-props.js'; import { SparklineXAxisInternalProps } from './types/sparkline-x-axis-props.js'; import type { SparklineYAxisProps } from './types/sparkline-y-axis-props.js'; import type { Timeseries } from '../../types/timeseries.js'; export interface SparklineDisplayProps extends SparklineProps, MaskingProps { data: Timeseries; thresholds?: SparklineThresholdProps[]; xAxis: SparklineXAxisInternalProps; yAxis: SparklineYAxisProps; style?: CSSProperties; } /** * SparklineContainer component */ export declare const SparklineContainer: { (props: SparklineDisplayProps): import("react/jsx-runtime.js").JSX.Element; displayName: string; };