export type HWDeviceInfo = {
    bip44AccountPublic: string;
    hwFeatures: HWFeatures;
};
export type HWFeatures = {
    vendor: string;
    model: string;
    deviceId: string | null | undefined;
    deviceObj: HWDeviceObj | null | undefined;
    serialHex?: string;
};
export type HWDeviceObj = {
    vendorId: number;
    productId: number;
};
//# sourceMappingURL=hw.d.ts.map