import { JSDoc } from "typescript"; /** * @description * Returns a predicate on whether the provided ast node has jsDoc tag * of the provided name. * If there is no JSDoc comment then it returns `false`. */ export declare function hasJSDocTagOfName(JSDoc: JSDoc, tagName: string): boolean;