import { IIdentifierService } from "./i-identifier-service"; import { Identifier, SyntaxKind } from "typescript"; import { NodeService } from "../node/node-service"; /** * A service for working with Identifiers */ export declare class IdentifierService extends NodeService implements IIdentifierService { /** * The allowed SyntaxKinds when parsing a SourceFile for relevant Expressions * @type {Iterable} */ protected readonly ALLOWED_KINDS: Iterable; /** * Gets the text of an Identifier * @param {Identifier} identifier * @returns {string} */ getText(identifier: Identifier): string; }