import type { ValueOf } from "./types"; export declare const TILE_NAMES: string[]; export declare const TILE_TYPES: { readonly OPEN: 0; readonly START: 1; readonly END: 2; readonly SPAWN: 3; }; export declare type TileType = ValueOf; export * from "./pathing/constants"; export declare const INITIAL_OBSTRUCTION_PROGRESS = 0.1; export declare const MIRROR_SEPARATION = 2; export declare const BUILD_DISTANCE = 1.4;