import { AbstractNode } from "../../../common/AbstractNode";
import { NodePositionInterface } from "../../../common/NodePositionInterface";
import { AbstractLiteralNode } from "./AbstractLiteralNode";
export declare class LiteralStringNode extends AbstractLiteralNode<string> {
    quotationType: string;
    constructor(value: string, position: NodePositionInterface, parent?: AbstractNode | undefined);
    toString(intend?: number | undefined): string;
}
