/// import { LidoComponentProps } from '../utils/index.js'; export type { Theme } from '../theme/index.js'; export declare enum ChartLineThresholdType { dash = "dash", flag = "flag" } export declare type ChartLineThresholdTypes = keyof typeof ChartLineThresholdType; export declare enum ChartLineBorderType { rounded = "rounded", square = "square" } export declare type ChartLineBorderTypes = keyof typeof ChartLineBorderType; export declare type ChartLineConfig = { loading?: boolean; data: LineData[]; thresholdType: ChartLineThresholdType; height: number; border: ChartLineBorderType; maxValue?: number; showLabels?: boolean; }; export declare type LineData = { color?: string; labelPosition?: 'top' | 'bottom'; threshold: { value: number; color?: string; label: string; description: string; descriptionElement?: React.ReactNode; }; }; export declare type ChartLineProps = LidoComponentProps<'div', ChartLineConfig>; export declare type ChartLineLabelProps = LidoComponentProps<'div', { id: string; previousIds?: string[]; zIndex: number; show?: boolean; height: number; thresholdType: ChartLineThresholdType; containerId: string; } & LineData>; //# sourceMappingURL=types.d.ts.map