import { TypeReferenceNode } from "typescript"; import { Type } from "./Type"; export declare class TypeReference extends Type { identifier: string; constructor(node: TypeReferenceNode); isPrimitive(): boolean; toString(): string; }