import { FlywayBaselineResponse, FlywayCleanResponse, FlywayInfoResponse, FlywayMigrateResponse, FlywayRepairResponse, FlywayResponse, FlywayValidateResponse, ParsedFlywayResponse } from "./responses"; export declare class ConvertJsonToResponse { private static readonly logger; static toFlywayResponse(json: string, reference: string, properties: any): ParsedFlywayResponse; static toFlywayMigrateResponse(json: string): ParsedFlywayResponse; static toFlywayCleanResponse(json: string): ParsedFlywayResponse; static toFlywayInfoResponse(json: string): ParsedFlywayResponse; static toFlywayValidateResponse(json: string): ParsedFlywayResponse; static toFlywayBaselineResponse(json: string): ParsedFlywayResponse; static toFlywayRepairResponse(json: string): ParsedFlywayResponse; private static handleParsingError; }