import type { ValuesOf } from '../../Types/ValuesOf'; /** * `ExpandDirection` - The `ExpandDirection` object is used to describe the different types of expand directions. * @public */ export declare const ExpandDirection: { /** * `down` - Expander will expand to the down direction. */ readonly Down: "down"; /** * `up` - Expander will expand to the up direction. */ readonly Up: "up"; /** * `left` - Expander will expand to the left direction. */ readonly Left: "left"; /** * `right` - Expander will expand to the right direction. */ readonly Right: "right"; }; /** * @public */ export type ExpandDirection = ValuesOf; //# sourceMappingURL=ExpandDirection.d.ts.map