import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ScaleMode` - The `ScaleMode` object is used to describe the different types of scale modes. */ export declare const ScaleMode: { /** * `grow` - Sets the scale mode to grow. */ readonly Grow: "grow"; /** * `shrink` - Sets the scale mode to shrink. */ readonly Shrink: "shrink"; }; /** * @public */ export type ScaleMode = ValuesOf; //# sourceMappingURL=ScaleMode.d.ts.map