export declare class Beacon { id: string; uuid: string; major: number; minor: number; identifier: string; tenantId: string; storeId: string; touchpointId: string; position: any; static fromJson(obj: any): Beacon; toJson(): any; constructor(id: string, uuid: string, major: number, minor: number, identifier: string, tenantId: string, storeId: string, touchpointId: string, position: any); getId(): string; getUuid(): string; getMajor(): number; getMinor(): number; getIdentifier(): string; getStoreId(): string; gettenantId(): string; getTouchpointId(): string; getPosition(): any; }