import type { FlagStatus } from './flag';
import type { RGBStatus } from './rgb';
import type { ScreenStatus } from './screen';
import type { SpeedStatus } from './speed';
export type KartHardwareState = {
    speed: SpeedStatus | null;
    rgb: RGBStatus | null;
    flag: FlagStatus | null;
    screen: ScreenStatus | null;
    isConnectedToServer: boolean;
    isSteeringWheelPressed: boolean;
};
