import { ChartData } from "../domains/chart/chart-types"; import { Attributes } from "../domains/chart/utils/transformDataAttributes"; import { ChartLibraryConfig } from "../domains/chart/utils/chartLibrariesSettings"; interface UseShowValueOutsideArgument { attributes: Attributes; chartData: ChartData; chartSettings: ChartLibraryConfig; hoveredRow: number; legendFormatValue: ((v: number | string | null) => number | string); showUndefined: boolean; } export declare const useShowValueOutside: ({ attributes, chartData, chartSettings, hoveredRow, legendFormatValue, showUndefined, }: UseShowValueOutsideArgument) => void; export {};