import type { ValuesOf } from '../../Types/ValuesOf'; /** * `FlowDirection` - The `FlowDirection` object is used to describe the different types of flow directions. */ export declare const FlowDirection: { /** * `ltr` - for left-to-right flow. */ readonly LeftToRight: "ltr"; /** * `rtl` - for right-to-left flow. */ readonly RightToLeft: "rtl"; /** * `auto` - for specifying that the direction of the element must be determined based on the contents of the element. */ readonly Auto: "auto"; }; /** * @public */ export type FlowDirection = ValuesOf; /** * Checks if the given value is a valid `FlowDirection`. * * @public * @param value - The value to check. * @returns `true` if the value is a valid `FlowDirection`, otherwise `false`. */ export declare function isRtl(value: FlowDirection): boolean; /** * Checks if the given value is a left-to-right `FlowDirection`. * * @public * @param value - The value to check. * @returns `true` if the value is `FlowDirection.LeftToRight`, otherwise `false`. */ export declare function isLtr(value: FlowDirection): boolean; //# sourceMappingURL=FlowDirection.d.ts.map