import { BiomeType } from '../../schema/biome.js'; import { StructureType } from '../../schema/structure.js'; export interface StructureLocation { type: StructureType; location: { x: number; y: number; }; name: string; score: number; } export interface StructureGenerationOptions { seed: string; width: number; height: number; elevation: Uint8Array; biomes: BiomeType[][]; riverMap: Uint8Array; numCities?: number; numTowns?: number; numDungeons?: number; } export declare function placeStructures(options: StructureGenerationOptions): StructureLocation[]; //# sourceMappingURL=structures.d.ts.map