import { ELayoutStrategyType } from "../../types/LayoutStrategyType";
import { AxisBase2D } from "../Visuals/Axis/AxisBase2D";
import { SciChartSurface } from "../Visuals/SciChartSurface";
import { BottomAlignedOuterAxisLayoutStrategy } from "./BottomAlignedOuterAxisLayoutStrategy";
import { ChartLayoutState } from "./ChartLayoutState";
/**
 * The Horizontally Stacked Layout Strategy for Bottom Axes
 */
export declare class BottomAlignedOuterHorizontallyStackedAxisLayoutStrategy extends BottomAlignedOuterAxisLayoutStrategy {
    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;
}
