import { SpwNode } from "../../../abstract/node"; import { SpwItemKey } from "../../../../abstract/item"; import { HydratedSpwItem, RawSpwItem } from "../../../../abstract/interfaces/internal"; declare type Kind = 'string'; declare type Str = { chars: string; token: '"' | '\''; }; export declare class StringNode extends SpwNode { static readonly kind = "string"; get key(): SpwItemKey; static isStringNode(o: unknown): o is StringNode; } export {};