import { z } from 'zod';
export declare const arithmeticOperatorSchema: z.ZodEnum<{
    "+": "+";
    "-": "-";
    "*": "*";
    "/": "/";
}>;
export declare const simpleArithmeticStringSchema: z.ZodString;
export declare const kartContextVariableSchema: z.ZodEnum<{
    "$kart.configuredSpeed": "$kart.configuredSpeed";
    "$kart.powerUpTime": "$kart.powerUpTime";
}>;
export declare const contextArithmeticStringSchema: z.ZodString;
export declare const arithmeticExpressionSchema: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodString]>;
