import { AstNodeVisitorInterface } from "../../common/nodeVisitorInterface";
import { AbstractPathValue } from "./AbstractPathValue";
export declare class IntValue extends AbstractPathValue<number> {
visit(visitor: AstNodeVisitorInterface): unknown;
}