import { type CSSProperties, type PropsWithChildren } 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'; export interface SparklineDisplayProps extends SparklineProps, MaskingProps { thresholds?: SparklineThresholdProps[]; xAxis: SparklineXAxisInternalProps; yAxis: SparklineYAxisProps; style?: CSSProperties; } /** * SparklineDisplay component */ export declare const SparklineDisplay: { (props: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; displayName: string; };