import * as ts from "../../adapters/typescript"; /** * @description * It returns the values of all JSDoc tags of the provided name, have in the provide ast node. * It return `undefined` if the provided ast node does not have the provided JSDoc tag. * It checks only the last JSDoc comment. * Returns the tag less comment for provided JSDoc tag name being `null`. * @todo * SRP violation * create getJSDocTagLessValue * @todo * replace undefined with null */ export declare function getJSDocTagValue(s: ts.astNode, jsDocTagName: string | null): (undefined | string)[] | undefined;