/** * The different possible battery charging states. * @enum * @category Message */ export declare const PixelBatteryStateValues: { /** Battery looks fine, nothing is happening. */ readonly ok: number; /** Battery level is low, notify user they should recharge. */ readonly low: number; /** Battery is currently recharging. */ readonly charging: number; /** Battery is full and finished charging. */ readonly done: number; /** * Coil voltage is bad, die is probably positioned incorrectly. * Note that currently this state is triggered during transition between charging and not charging... */ readonly badCharging: number; /** Charge state doesn't make sense (charging but no coil voltage detected for instance). */ readonly error: number; }; /** * The names for the "enum" type {@link PixelBatteryStateValues}. * @category Message */ export type PixelBatteryState = keyof typeof PixelBatteryStateValues; //# sourceMappingURL=PixelBatteryState.d.ts.map