import { IStringLiteralService } from "./i-string-literal-service"; import { LiteralService } from "../literal/literal-service"; import { StringLiteral } from "typescript"; /** * A service for working with StringLiterals */ export declare class StringLiteralService extends LiteralService implements IStringLiteralService { /** * Gets the text of a StringLiteral * @param {StringLiteral} literal * @returns {string} */ getText(literal: StringLiteral): string; /** * Gets the text of a StringLiteral * @param {StringLiteral} literal * @returns {string} */ getNormalizedText(literal: StringLiteral): string; }