import type { ValuesOf } from '../../Types/ValuesOf'; /** * `HorizontalAlignment` - The `HorizontalAlignment` object is used to describe how an element is positioned or stretched horizontally within a parent's layout slot. * * @public */ export declare const HorizontalAlignment: { /** * `left` - Align element towards the left of a parent's layout slot. */ readonly Left: "left"; /** * `center` - Center element horizontally. */ readonly Center: "center"; /** * `right` - Align element towards the right of a parent's layout slot. */ readonly Right: "right"; /** * `stretch` - Stretch element horizontally within a parent's layout slot. */ readonly Stretch: "stretch"; }; /** * @public */ export type HorizontalAlignment = ValuesOf; //# sourceMappingURL=HorizontalAlignment.d.ts.map