Files
ETB/ETB-FrontEnd/node_modules/@mui/x-charts/esm/Gauge/GaugeValueText.d.ts
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

15 lines
516 B
TypeScript

import * as React from 'react';
import { ChartsTextProps } from "../ChartsText/index.js";
export interface GaugeFormatterParams {
value: number | null;
valueMin: number;
valueMax: number;
}
export interface GaugeValueTextProps extends Omit<ChartsTextProps, 'text'> {
text?: string | ((params: GaugeFormatterParams) => string | null);
}
declare function GaugeValueText(props: GaugeValueTextProps): React.JSX.Element | null;
declare namespace GaugeValueText {
var propTypes: any;
}
export { GaugeValueText };