import * as ts from "typescript";
/**
 * JS doc tag info.
 */
export declare class JSDocTagInfo {
    /** Gets the compiler JS doc tag info. */
    readonly compilerObject: ts.JSDocTagInfo;
    /**
     * Gets the name.
     */
    getName(): string;
    /**
     * Gets the text.
     */
    getText(): string | undefined;
}
