import * as ts from 'typescript'; export * from './type'; export * from './declaration'; /** * Check to see whether a given node is a ts.Declaration * * @param node node to check * @public */ export declare function isDeclaration(thing: any): thing is ts.Declaration; /** * Check to see whether a value is a Node * @param thing value to check * @public */ export declare function isNode(thing: any): thing is ts.Node; /** * Check to see whether a value is a Type * @param thing value to check * @public */ export declare function isType(thing: any): thing is ts.Type; /** * Check to see whether a value is a Symbol * @param thing value to check * @public */ export declare function isSymbol(thing: any): thing is ts.Symbol; //# sourceMappingURL=index.d.ts.map