import { LiteralTypeNode } from "typescript"; import { Type } from "./Type"; export declare class LiteralType extends Type { value: string | number; constructor(type: LiteralTypeNode); toString(): string; }