import { type PropsWithChildren } from 'react'; import type { TruncationMode } from '../../../typography/text-ellipsis/TextEllipsis.js'; import type { ColorPalette, CustomColorPalette } from '../../core/types/color-palette.js'; import type { SankeyChartNodesProps } from '../types/sankey-props.js'; interface SankeyConfigProviderProps { nodesConfig: SankeyChartNodesProps; truncationMode: TruncationMode; colorPalette: ColorPalette | CustomColorPalette; } export declare const SankeyConfigProvider: { ({ nodesConfig, truncationMode, colorPalette, children, }: PropsWithChildren): import("react").JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=SankeyConfigProvider.d.ts.map