import * as ts from "typescript";
/**
 * Symbol display part.
 */
export declare class SymbolDisplayPart {
    /** Gets the compiler text span. */
    readonly compilerObject: ts.SymbolDisplayPart;
    /**
     * Gets the text.
     */
    getText(): string;
    /**
     * Gets the kind.
     */
    getKind(): string;
}
