import type { DrawCall } from "../DrawCall.ts"; interface SortableDrawList { calls: DrawCall[]; } /** Sorts draw calls by tile distance from camera. */ export declare class TileDistanceSorter { /** Sorts draw calls back-to-front by Manhattan tile distance from camera. */ sort(drawList: SortableDrawList, cameraPosition: { x: number; y: number; }): void; } export {}; //# sourceMappingURL=TileDistanceSorter.d.ts.map