import { BaseManager } from '../../util/baseManager';
import type { ChartAxisDirection } from '../chartAxisDirection';
import type { ISeries } from '../series/seriesTypes';
import type { TooltipContent } from '../tooltip/tooltip';
import type { UpdateService } from '../updateService';
import type { HighlightManager } from './highlightManager';
import type { TooltipManager } from './tooltipManager';
import type { ZoomManager } from './zoomManager';
type GroupId = string | symbol;
/** Breaks circular dependencies which occur when importing ChartAxis. */
type AxisLike = {
    boundSeries: ISeries<any, any, any>[];
    direction: ChartAxisDirection;
    keys: string[];
    reverse?: boolean;
    nice: boolean;
    min?: number;
    max?: number;
};
/** Breaks circular dependencies which occur when importing Chart. */
type ChartLike = {
    id: string;
    axes: AxisLike[];
    series: ISeries<any, any, any>[];
    modulesManager: {
        getModule<R>(module: string): R | undefined;
    };
    ctx: {
        highlightManager: HighlightManager;
        tooltipManager: TooltipManager;
        updateService: UpdateService;
        zoomManager: ZoomManager;
    };
    getTooltipContent(series: ISeries<unknown, unknown, unknown>, datumIndex: unknown, removeThisDatum: unknown): TooltipContent[];
};
export declare class SyncManager extends BaseManager {
    protected chart: ChartLike;
    private static readonly chartsGroups;
    private static readonly DEFAULT_GROUP;
    constructor(chart: ChartLike);
    subscribe(groupId?: GroupId): this;
    unsubscribe(groupId?: GroupId): this;
    getChart(): ChartLike;
    getGroup(groupId?: GroupId): ChartLike[];
    getGroupSiblings(groupId?: GroupId): ChartLike[];
    private get;
}
export {};
