import Literal from "./index";
import { ASTNode } from "../../../types/nodeTypes";
import "../../../tokenExecutor";
import "../../../../tokenizer/types";

declare class StringLiteral extends Literal {
  getLiteral(): ASTNode;
}

export { StringLiteral as default };
