import { IComputedPropertyNameService } from "./i-computed-property-name-service"; import { IPrinter } from "@wessberg/typescript-ast-util"; import { ComputedPropertyName } from "typescript"; /** * A service for working with ComputedPropertyNames */ export declare class ComputedPropertyNameService implements IComputedPropertyNameService { private readonly printer; constructor(printer: IPrinter); /** * Gets the stringified expression of a ComputedPropertyName * @param {ComputedPropertyName} computedPropertyName * @returns {string} */ getExpression(computedPropertyName: ComputedPropertyName): string; }