import { RechartsRootState } from '../state/store'; /** * Given a zIndex, returns the corresponding portal element ID. * If no zIndex is provided or if the zIndex is not registered, returns undefined. * * It also returns undefined in case the z-index portal has not been rendered yet. */ export declare const selectZIndexPortalId: (state: RechartsRootState, zIndex: number | undefined, isPanorama: boolean) => string | undefined; export declare const selectAllRegisteredZIndexes: ((state: import("redux").EmptyObject & { brush: import("../state/brushSlice").BrushSettings; cartesianAxis: { xAxis: Record; yAxis: Record; zAxis: Record; }; chartData: import("../state/chartDataSlice").ChartDataState; errorBars: import("../state/errorBarSlice").ErrorBarsState; graphicalItems: import("../state/graphicalItemsSlice").GraphicalItemsState; layout: { layoutType: import("../util/types").LayoutType; width: number; height: number; margin: import("../util/types").Margin; scale: number; }; legend: { settings: import("../state/legendSlice").LegendSettings; size: import("../util/types").Size; payload: ReadonlyArray>; }; options: import("../state/optionsSlice").ChartOptions; polarAxis: { radiusAxis: Record; angleAxis: Record; }; polarOptions: import("../state/polarOptionsSlice").PolarChartOptions | null; referenceElements: { dots: ReadonlyArray; areas: ReadonlyArray; lines: ReadonlyArray; }; rootProps: import("../state/rootPropsSlice").UpdatableChartOptions; tooltip: import("../state/tooltipSlice").TooltipState; zIndex: { zIndexMap: Record; }; }) => number[]) & { clearCache: () => void; resultsCount: () => number; resetResultsCount: () => void; } & { resultFunc: (resultFuncArgs_0: Record) => number[]; memoizedResultFunc: ((resultFuncArgs_0: Record) => number[]) & { clearCache: () => void; resultsCount: () => number; resetResultsCount: () => void; }; lastResult: () => number[]; dependencies: [(state: RechartsRootState) => Record]; recomputations: () => number; resetRecomputations: () => void; dependencyRecomputations: () => number; resetDependencyRecomputations: () => void; } & { argsMemoize: typeof import("reselect").weakMapMemoize; memoize: typeof import("reselect").weakMapMemoize; };