import { Thickness } from "../../Core/Thickness";
import { ISciChartSurface } from "../Visuals/ISciChartSurface";
export declare class SciChartHorizontalGroup {
    groupTopSize: number;
    groupBottomSize: number;
    private layoutManagers;
    private topOuterLayoutSizes;
    private bottomOuterLayoutSizes;
    addSurfaceToGroup(sciChartSurface: ISciChartSurface): void;
    removeSurface(sciChartSurface: ISciChartSurface): void;
    calculateMaxTitleSize(): Thickness;
    synchronizeAxisSizes(): void;
    onTopSizeChanged(key: string, value: number): void;
    onBottomSizeChanged(key: string, value: number): void;
}
