import { Node } from "typescript"; export type Tag = { name: string; text: string; }; export declare function getJSDocTags(node: Node): Tag[] | undefined;