import { Identifiable } from 'bc-minecraft-bedrock-shared'; /**The biome interface*/ export interface Biome extends Identifiable { /**The tags of that this biome has*/ tags: string[]; } /**The namespace that provides functions for biomes*/ export declare namespace Biome { /**Checks if the given object implements the biome interface * @param value The object to check * @returns true or false if the object implements biome */ function is(value: any): value is Biome; } //# sourceMappingURL=biome.d.ts.map