export declare class DeviceDetails { /** * Source of the device_box. Default value is `TrustWidget`. */ source?: string; /** * Device related information retrieved from TrustWidget. */ deviceBox?: string; /** * IP address of the device used for booking. */ ipAddress: string; constructor(deviceDetails: DeviceDetailsProperties); } export interface DeviceDetailsProperties { source?: string; deviceBox?: string; ipAddress: string; }