import { LiteralTypeNode } from "typescript"; import { DeclarationMeta } from "../parser"; import { TypeDeclaration } from "./TypeDeclaration"; import { LiteralType } from "./LiteralType"; export declare class LiteralTypeDeclaration extends TypeDeclaration { type: LiteralType; constructor(meta: DeclarationMeta, type: LiteralTypeNode); typeToString(): string; }