import { AABB2 } from './AABB2.js';
import type { IMap2DTileCoords } from './types.js';
export declare class Map2DTileCoords implements IMap2DTileCoords {
    static createID(x: number, y: number): string;
    readonly id: string;
    readonly x: number;
    readonly y: number;
    view: AABB2;
    constructor(x: number, y: number, view?: AABB2);
}
//# sourceMappingURL=Map2DTileCoords.d.ts.map