import { BaseType } from "./BaseType"; import * as ts from "typescript"; export declare class UnknownSymbolType extends BaseType { private name; constructor(parentNode: ts.Node, symbol: ts.Symbol, useSymbolName?: boolean); getId(): string; getName(): string; }