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

10 lines
343 B
TypeScript

import * as React from 'react';
import { ChartsYAxisProps } from "../models/axis.js";
interface ChartsSingleYAxisProps extends ChartsYAxisProps {
axisLabelHeight: number;
}
/**
* @ignore - internal component.
*/
declare function ChartsSingleYAxisTicks(inProps: ChartsSingleYAxisProps): React.JSX.Element;
export { ChartsSingleYAxisTicks };