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