type Literal = number | string; export declare class LiteralNode { readonly type = "Literal"; readonly value: T; constructor(value: T); } export {};