export declare const OperatorEnum: {
    readonly Plus: "+";
    readonly Minus: "-";
    readonly Star: "*";
    readonly Slash: "/";
};
export type OperatorEnum = typeof OperatorEnum[keyof typeof OperatorEnum];
