import type { SpeedStatus } from './SpeedStatus';
export type SpeedModuleStatus = {
    speedStatus: SpeedStatus;
    /** The Battery of the Modules */
    battery12V: number;
    /** If there is a Speed change, this should return the current value */
    currentSpeed: number;
    ADCVoltage: number;
    DACVoltage: number;
    /** The current default % speed config (0 - 100) */
    currentDefaultSpeedConfig: number;
};
