interface Address { streetAddress1?: string; streetAddress2?: string; city?: string; state?: string; postalCode?: string; country?: string; } export interface Site { /** Unique identifier for the site */ id: string; /** Display name for the site */ name?: string; /** Physical address of the site */ address: Address; /** Longitude in decimal degrees (-180 to 180) */ longitude: number; /** Latitude in decimal degrees (-90 to 90) */ latitude: number; } export {}; //# sourceMappingURL=site.d.ts.map