import { type UseChartAnimationSignature } from "./useChartAnimation/index.js"; import { type UseChartDimensionsSignature } from "./useChartDimensions/index.js"; import { type UseChartExperimentalFeaturesSignature } from "./useChartExperimentalFeature/index.js"; import { type UseChartIdSignature, type UseChartIdParameters } from "./useChartId/index.js"; import { type UseChartSeriesSignature } from "./useChartSeries/index.js"; import { type UseChartInteractionListenerSignature } from "./useChartInteractionListener/index.js"; import type { ChartSeriesType } from "../../../models/seriesType/config.js"; /** * Internal plugins that create the tools used by the other plugins. * These plugins are used by the Charts components. */ export declare const CHART_CORE_PLUGINS: readonly [import("../models/index.js").ChartPlugin, import("../models/index.js").ChartPlugin, import("../models/index.js").ChartPlugin, import("../models/index.js").ChartPlugin, import("../models/index.js").ChartPlugin, import("../models/index.js").ChartPlugin]; export type ChartCorePluginSignatures = [UseChartIdSignature, UseChartExperimentalFeaturesSignature, UseChartDimensionsSignature, UseChartSeriesSignature, UseChartAnimationSignature, UseChartInteractionListenerSignature]; export interface ChartCorePluginParameters extends UseChartIdParameters {}