export declare const t: { isStringLiteral: (n: unknown) => n is { type: "Literal"; value: string; }; isNumericLiteral: (n: unknown) => n is { type: "Literal"; value: number; }; isBooleanLiteral: (n: unknown) => n is { type: "Literal"; value: boolean; }; isIdentifier: (n: unknown) => n is { type: "Identifier"; name: string; }; isCallExpression: (n: unknown) => n is { type: "CallExpression"; callee: any; arguments: any[]; }; isMemberExpression: (n: unknown) => n is { type: "MemberExpression"; object: any; property: any; computed: boolean; }; isVariableDeclarator: (n: unknown) => n is { type: "VariableDeclarator"; id: any; init: any; }; isFunctionDeclaration: (n: unknown) => n is { type: "FunctionDeclaration"; id: { name: string; } | null; params: any[]; body: any; }; isExportNamedDeclaration: (n: unknown) => n is { type: "ExportNamedDeclaration"; declaration: any; specifiers: any[]; }; isImportDeclaration: (n: unknown) => n is { type: "ImportDeclaration"; source: { value: string; }; specifiers: any[]; }; isObjectProperty: (n: unknown) => n is { type: "Property"; key: any; value: any; computed: boolean; }; isObjectMethod: (n: unknown) => n is { type: "ObjectMethod"; key: any; }; isTSInterfaceDeclaration: (n: unknown) => n is { type: "TSInterfaceDeclaration"; id: { name: string; }; }; isTSTypeAliasDeclaration: (n: unknown) => n is { type: "TSTypeAliasDeclaration"; id: { name: string; }; }; isTSEnumDeclaration: (n: unknown) => n is { type: "TSEnumDeclaration"; id: { name: string; }; }; isClassDeclaration: (n: unknown) => n is { type: "ClassDeclaration"; id: { name: string; } | null; }; isClassExpression: (n: unknown) => n is { type: "ClassExpression"; id: { name: string; } | null; }; isClassMethod: (n: unknown) => n is { type: "ClassMethod"; key: any; }; isClassProperty: (n: unknown) => n is { type: "ClassProperty"; key: any; }; isExportDefaultDeclaration: (n: unknown) => n is { type: "ExportDefaultDeclaration"; declaration: any; }; isFunctionExpression: (n: unknown) => n is { type: "FunctionExpression"; id: { name: string; } | null; params: any[]; body: any; }; isJSXElement: (n: unknown) => n is { type: "JSXElement"; openingElement: any; }; isJSXIdentifier: (n: unknown) => n is { type: "JSXIdentifier"; name: string; }; isJSXMemberExpression: (n: unknown) => n is { type: "JSXMemberExpression"; object: any; property: any; }; isObjectExpression: (n: unknown) => n is { type: "ObjectExpression"; properties: any[]; }; isLiteral: (n: unknown) => n is { type: "Literal"; value: any; }; isJSXAttribute: (n: unknown) => n is { type: "JSXAttribute"; name: any; value: any; }; isNewExpression: (n: unknown) => n is { type: "NewExpression"; callee: any; arguments: any[]; }; isTemplateLiteral: (n: unknown) => n is { type: "TemplateLiteral"; quasis: any[]; expressions: any[]; }; isDecorator: (n: unknown) => n is { type: "Decorator"; expression: any; }; isProgram: (n: unknown) => n is { type: "Program"; body: any[]; }; isVariableDeclaration: (n: unknown) => n is { type: "VariableDeclaration"; declarations: any[]; kind: string; }; isArrayExpression: (n: unknown) => n is { type: "ArrayExpression"; elements: any[]; }; isAssignmentExpression: (n: unknown) => n is { type: "AssignmentExpression"; left: any; right: any; }; isArrowFunctionExpression: (n: unknown) => n is { type: "ArrowFunctionExpression"; params: any[]; body: any; }; isSpreadElement: (n: unknown) => n is { type: "SpreadElement"; argument: any; }; isExpressionStatement: (n: unknown) => n is { type: "ExpressionStatement"; expression: any; }; isBlockStatement: (n: unknown) => n is { type: "BlockStatement"; body: any[]; }; isReturnStatement: (n: unknown) => n is { type: "ReturnStatement"; argument: any; }; isTaggedTemplateExpression: (n: unknown) => n is { type: "TaggedTemplateExpression"; tag: any; quasi: any; }; isTSAsExpression: (n: unknown) => n is { type: "TSAsExpression"; expression: any; typeAnnotation: any; }; isTSTypeAssertion: (n: unknown) => n is { type: "TSTypeAssertion"; expression: any; typeAnnotation: any; }; isTSNonNullExpression: (n: unknown) => n is { type: "TSNonNullExpression"; expression: any; }; isMetaProperty: (n: unknown) => n is { type: "MetaProperty"; meta: any; property: any; }; isExportAllDeclaration: (n: unknown) => n is { type: "ExportAllDeclaration"; source: { value: string; }; }; isExportDeclaration: (n: unknown) => n is { type: "ExportDeclaration"; source: { value: string; }; }; isImportExpression: (n: unknown) => n is { type: "ImportExpression"; source: any; }; };