import type { ValuesOf } from '../../Types/ValuesOf'; /** * `SpinDirection` - The `SpinDirection` object is used to describe the different types of spin directions. * * @public */ export declare const SpinDirection: { /** * Represents a spin initiated by the end-user in order to Increase a value. */ readonly Increase: 0; /** * Represents a spin initiated by the end-user in order to Decrease a value. */ readonly Decrease: 1; }; /** * @public */ export type SpinDirection = ValuesOf; //# sourceMappingURL=SpinDirection.d.ts.map