import { InflectionCommand } from './declension-types'; import { InflectionCommandRunner } from './inflection-command-runner'; export declare class AppendCommandRunner implements InflectionCommandRunner { private readonly command; constructor(command: InflectionCommand); /** * Appends the command value to the given value. * Returns a new value. */ exec(value: string): string; }