import { ErrorResult } from '../../../upgrade/models/error-result';
/**
 * Updater for iif errors.
 */
export declare class IiFUpdaterUtil {
    /**
     * the update function.
     * @param fileData the file data.
     * @param error the error object.
     * @returns the updated file data.
     */
    update(fileData: string, error: ErrorResult): string;
    /**
     * the update function.
     * @param inputString the input file data string.
     * @returns the updated file data string.
     */
    private regexFixer;
}
