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