import type * as ts from 'typescript';
export declare class DeclarationCache {
    private _declarationKeyMap;
    constructor();
    set(declaration: ts.Declaration, key: string): void;
    get(declaration: ts.Declaration): string | undefined;
    has(declaration: ts.Declaration): boolean;
}
