import type { ScaleLinear } from 'd3-scale'; import { type PropsWithChildren } from 'react'; import { Unit, ConvertibleUnit, FormatOptions } from '@dynatrace-sdk/units'; import type { TruncationMode } from '../../../../../../typography/text-ellipsis/TextEllipsis.js'; import { Formatter } from '../../../../types/formatter.js'; import { ChartLegendOrientation } from '../../../../types/legend.js'; interface RangeLegendProvidersProps { formatter: Formatter | FormatOptions; orientation: ChartLegendOrientation; scale: ScaleLinear; truncationMode: TruncationMode; } export declare const RangeLegendProviders: (props: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export {};