import type { ScaleLinear } from 'd3-scale'; import { type PropsWithChildren } from 'react'; import type { TruncationMode } from '@dynatrace/strato-components/typography'; import { Unit, ConvertibleUnit, FormatOptions } from '@dynatrace-sdk/units'; 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.js").JSX.Element; export {};