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