import { ReactElement } from 'react'; import { ThresholdOptions } from '../model'; export interface ThresholdsEditorProps { onChange: (thresholds: ThresholdOptions) => void; thresholds?: ThresholdOptions; hideDefault?: boolean; disablePercentMode?: boolean; } export declare function ThresholdsEditor({ thresholds, onChange, hideDefault, disablePercentMode, }: ThresholdsEditorProps): ReactElement; //# sourceMappingURL=ThresholdsEditor.d.ts.map