import { RetailZone } from './retailZone'; export type RetailGatewayStatus = 'online' | 'offline'; export declare class RetailGateway { id: string; storeId: string; zoneId?: string | null; macAddress: string; imei?: string | null; name: string; status: RetailGatewayStatus; lastSeenAt?: Date | null; firmwareVersion?: string | null; signalStrengthThreshold?: number | null; createdAt: Date; updatedAt: Date; zone?: RetailZone; }