import { Updater } from '../../../upgrade/models/updater-interface';
import { ErrorResult } from '../../../upgrade/models/error-result';
/**
 * the ObservableThrowUpdater error handler/updater.
 */
export declare class ObservableThrowUpdater implements Updater {
    /**
     * the update function.
     * @param fileData the file data.
     * @param error the error object.
     * @returns the updated file data.
     */
    update(fileData: string, error: ErrorResult): Promise<string>;
    /**
     * the update function.
     * @param inputString the input file data string.
     * @returns the updated file data string.
     */
    private regexFixer;
    /**
     * the importFixer function.
     * @param inputString the input file data string.
     * @returns the updated file data string.
     */
    private importFixer;
}
