export type ThresholdProps = { value: number; showIndicator?: boolean; color?: string; }; export declare const findMatchingThreshold: (value: number, thresholds: ThresholdProps[]) => ThresholdProps | undefined;