import { type ChartsTooltipContainerProps } from "./ChartsTooltipContainer.js"; import { type TriggerOptions } from "./utils.js"; export type ChartsTooltipProps = T extends TriggerOptions ? Omit, 'children'> & { /** * Defines the sort order in which series items are displayed in the axis tooltip. * When set to `none`, series are displayed in the same order they are provided in the series property. Otherwise they are sorted by their value. * Only applies when `trigger='axis'`. * @default 'none' */ sort?: T extends 'axis' ? 'none' | 'asc' | 'desc' : never; } : never; /** * Demos: * * - [ChartsTooltip](https://mui.com/x/react-charts/tooltip/) * * API: * * - [ChartsTooltip API](https://mui.com/x/api/charts/charts-tool-tip/) */ declare function ChartsTooltip(props: ChartsTooltipProps): import("react/jsx-runtime").JSX.Element; declare namespace ChartsTooltip { var propTypes: any; } export { ChartsTooltip };