import * as ts from "typescript";
import { DocumentSpan } from "./DocumentSpan";
export declare class ReferenceEntry extends DocumentSpan<ts.ReferenceEntry> {
    getIsWriteAccess(): boolean;
    /**
     * If this is the definition reference.
     */
    getIsDefinition(): boolean;
    getIsInString(): true | undefined;
}
