import type { ValuesOf } from '../../Types/ValuesOf'; /** * `TileManagerDragMode` - Defines the drag mode for the tile manager. * * @public */ export declare const TileManagerDragMode: { /** * `none` - Drag and drop is disabled. * @default */ readonly None: "none"; /** * `tile` - The entire tile can be dragged. */ readonly Tile: "tile"; /** * `tile-header` - Only the tile header can be used to drag the tile. */ readonly TileHeader: "tile-header"; }; /** * @public */ export type TileManagerDragMode = ValuesOf; //# sourceMappingURL=TileManagerDragMode.d.ts.map