export declare const AxisOrientation: {
    readonly Top: "top";
    readonly Bottom: "bottom";
    readonly Left: "left";
    readonly Right: "right";
};
export type AxisOrientation = (typeof AxisOrientation)[keyof typeof AxisOrientation];
