import type { ValuesOf } from '../../Types/ValuesOf'; /** * `Orientation` - The `Orientation` object is used to describe the different types of orientations. * * @public */ export declare const Orientation: { /** * `horizontal` - Layout should be horizontally oriented. */ readonly Horizontal: "horizontal"; /** * `vertical` - Layout should be horizontally oriented. */ readonly Vertical: "vertical"; }; /** * @public */ export type Orientation = ValuesOf; /** * Checks if the given value is a valid `Orientation`. * * @public * @param value - The value to check. * @returns `true` if the value is a valid `Orientation`, otherwise `false`. */ export declare function isHorizontal(value: Orientation): boolean; /** * Checks if the given value is a vertical `Orientation`. * * @public * @param value - The value to check. * @returns `true` if the value is `Orientation.Vertical`, otherwise `false`. */ export declare function isVertical(value: Orientation): boolean; //# sourceMappingURL=Orientation.d.ts.map