import { ELayoutStrategyType } from "../../types/LayoutStrategyType";
import { AxisBase2D } from "../Visuals/Axis/AxisBase2D";
import { SciChartSurface } from "../Visuals/SciChartSurface";
import { RightAlignedOuterAxisLayoutStrategy } from "./RightAlignedOuterAxisLayoutStrategy";
import { ChartLayoutState } from "./ChartLayoutState";
/**
 * The Vertically Stacked Layout Strategy for Right Axes
 */
export declare class RightAlignedOuterVerticallyStackedAxisLayoutStrategy extends RightAlignedOuterAxisLayoutStrategy {
    readonly type: ELayoutStrategyType;
    readonly isStacked: boolean;
    measureAxes(sciChartSurface: SciChartSurface, chartLayoutState: ChartLayoutState, axes: AxisBase2D[]): number;
    layoutAxes(left: number, top: number, right: number, bottom: number, axes: AxisBase2D[]): void;
}
