Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

18 lines
594 B
TypeScript

import * as React from 'react';
import { SxProps, Theme } from '@mui/material/styles';
import { ChartsLabelClasses } from "./labelClasses.js";
export interface ChartsLabelProps {
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<ChartsLabelClasses>;
children?: React.ReactNode;
className?: string;
sx?: SxProps<Theme>;
}
/**
* Generates the label mark for the tooltip and legend.
* @ignore - internal component.
*/
declare const ChartsLabel: React.ForwardRefExoticComponent<ChartsLabelProps & React.RefAttributes<{}>>;
export { ChartsLabel };