/** * Bluetooth UUIDs for a Pixels' peripheral service and characteristics. * @category Pixels */ export type PixelBleUuids = { /** Pixel device service UUID. */ service: string; /** Pixel device notify characteristic UUID. */ notifyCharacteristic: string; /** Pixel device write characteristic UUID. */ writeCharacteristic: string; }; /** * Bluetooth IDs and UUIDs related to Pixels peripherals. * @category Pixels */ export declare const BluetoothIds: { readonly pixel: Readonly; readonly charger: Readonly; /** Nordic's DFU service short UUID. */ readonly dfuService: 65113; /** Systemic Games company identifier. */ readonly systemicGamesCompanyId: 3385; }; //# sourceMappingURL=PixelBleUuids.d.ts.map