export { normalizeDeviceDescriptor }; export type { DeviceDescriptor }; interface DeviceDescriptor { name?: string; deviceType?: string; osVersion?: string; headless?: boolean; platform?: string; } declare function normalizeDeviceDescriptor({ contextDevice, stepDevice, platform, }: { contextDevice?: DeviceDescriptor | string; stepDevice?: DeviceDescriptor | string; platform?: string; }): DeviceDescriptor; //# sourceMappingURL=mobileDevice.d.ts.map