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