import { KeywordTypeNode, NullLiteral, SyntaxKind } from 'typescript'; import { AstNode } from './ast-node'; export declare class AstKeywordValue implements AstNode { node: KeywordTypeNode | NullLiteral; constructor(node: KeywordTypeNode | NullLiteral); get value(): null | undefined; }