import { IEnvironmentFrame } from '../../../common/domain-object-model/environment-frame';
import { IExpression } from '../../../common/domain-object-model/iexpression';
import { IGlobalInfo } from '../../../common/domain-object-model/iglobal-info';
export declare class IntegerLiteral implements IExpression<number> {
    readonly value: number;
    constructor(value: unknown);
    toString(): string;
    evaluate(globalInfo: IGlobalInfo<number>, localEnvironment?: IEnvironmentFrame<number>, options?: unknown): number;
}
//# sourceMappingURL=number.d.ts.map