import { NodeParser, Node } from '../Parser';
export interface StringValueNode extends Node {
    readonly kind: 'STRING';
    readonly value: string;
}
export declare const stringValueParser: NodeParser<StringValueNode>;
