import { BaseError } from "./BaseError"; import * as ts from "typescript"; export declare class UnknownTypeReference extends BaseError { private type; constructor(type: ts.TypeReferenceNode | ts.ExpressionWithTypeArguments | undefined, message?: string); getType(): ts.TypeReferenceNode | ts.ExpressionWithTypeArguments | undefined; }