import * as ts from "typescript";
import { DocumentSpan } from "./DocumentSpan";
import { SymbolDisplayPart } from "./SymbolDisplayPart";
export declare class ImplementationLocation extends DocumentSpan<ts.ImplementationLocation> {
    /**
     * Gets the kind.
     */
    getKind(): ts.ScriptElementKind;
    /**
     * Gets the display parts.
     */
    getDisplayParts(): SymbolDisplayPart[];
}
