import { RubicSdkError } from ".."; /** * Thrown, when current gas price is higher, than max gas price on cross-chain contract * in target network. */ export declare class UpdatedRatesError extends RubicSdkError { readonly oldAmount: string; readonly newAmount: string; constructor(oldAmount: string, newAmount: string); }