import type { EthAddress, LocationId } from './identifier'; import type { WorldCoords, WorldLocation } from './world'; /** * Represents a planet location that has been broadcast on-chain */ export declare type KardashevCoords = WorldCoords & { hash: LocationId; operator: EthAddress; }; export declare type KardashevLocation = WorldLocation & { operator: EthAddress; radius: number; };