import type { Device } from "../types";
declare class DeviceHelper {
    static getDeviceDetails: (asJson?: boolean) => string | Device;
    static getDeviceExtendedInfo: () => void;
}
export { DeviceHelper };
