import { JSDoc } from "typescript"; /** * @description * It returns the values that all JSDoc tags of the provided name, have in the provide ast node. * It checks only the last JSDoc comment. * * It returns `null` if the provided ast node * * - does not have the provided JSDoc tag. * - does not have jsDoc comment * * It returns the tag less comment for provided JSDoc tag name being `null`. */ export declare function getJSDocTagLessValue(JSDoc: JSDoc): null | string;