import { ITypeNodeService } from "./i-type-node-service"; import { TypeNode } from "typescript"; import { IPrinter } from "@wessberg/typescript-ast-util"; /** * A service for working with TypeNodes */ export declare class TypeNodeService implements ITypeNodeService { private readonly printer; constructor(printer: IPrinter); /** * Gets the name of a TypeNode * @param {TypeNode} type * @returns {string} */ getNameOfType(type: TypeNode): string; }