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