import type { ValuesOf } from '../../Types/ValuesOf'; /** * `VerticalAlignment` - The `VerticalAlignment` is used to describe how element is positioned or stretched vertically within a parent's layout slot. * * @public */ export declare const VerticalAlignment: { /** * `top` - Align element towards the top of a parent's layout slot. */ readonly Top: "top"; /** * `center` - Center element vertically. */ readonly Center: "center"; /** * `bottom` - Align element towards the bottom of a parent's layout slot. */ readonly Bottom: "bottom"; /** * `stretch` - Stretch element vertically within a parent's layout slot. */ readonly Stretch: "stretch"; }; /** * @public */ export type VerticalAlignment = ValuesOf; //# sourceMappingURL=VerticalAlignment.d.ts.map