import type { IDevice } from "../device.interface";
/**
 * Interface representing the Climbro device, extending the base Device interface.
 */
export interface IClimbro extends IDevice {
}
