import { OnChainProvider } from "../../../../../on-chain/calculation-manager/providers/dexes/common/on-chain-provider/on-chain-provider";
import { DeepReadonly } from 'ts-essentials';
/**
 * Stores contracts info.
 * Every contract may have several instant-trade providers.
 * Because of that every provider has `method suffix` - suffix
 * to add to default swap-method name to call that provider's method.
 */
export declare const crossChainTradeProvidersData: DeepReadonly<Record<string, {
    ProviderClass: typeof OnChainProvider;
    methodSuffix: string;
}[]>>;
