import { z } from 'zod';
export declare const steeringWheelActionCommandSchema: z.ZodEnum<{
    readonly TURN_LED_ON: "TurnLedOn";
    readonly TURN_LED_OFF: "TurnLedOff";
}>;
export declare const steeringWheelModuleStatusSchema: z.ZodObject<{
    isLeftButtonPressed: z.ZodBoolean;
    isRightButtonPressed: z.ZodBoolean;
}, z.core.$strip>;
