import type { ValuesOf } from '../../Types/ValuesOf'; /** * `SplitLock` - The `SplitLock` object is used to describe the different types of split locks. */ export declare const SplitLock: { /** * `None` - No locking. * @default */ readonly None: "none"; /** * `Start` - Locks the start slot of the container. */ readonly Start: "start"; /** * `End` - Locks the end slot of the container. */ readonly End: "end"; }; /** * @public */ export type SplitLock = ValuesOf; //# sourceMappingURL=SplitLock.d.ts.map