import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class AWSLocation { Zone?: Value; SubnetArn?: Value; constructor(properties: AWSLocation); } export declare class Location { Address?: Value; Latitude?: Value; Longitude?: Value; constructor(properties: Location); } export interface DeviceProperties { SiteId?: Value; AWSLocation?: AWSLocation; Type?: Value; Description?: Value; GlobalNetworkId: Value; SerialNumber?: Value; Model?: Value; Vendor?: Value; Tags?: List; Location?: Location; } export default class Device extends ResourceBase { static AWSLocation: typeof AWSLocation; static Location: typeof Location; constructor(properties: DeviceProperties); }