import { TargetChainId } from '../../../../chains/types';
/**
 * Chain config for Across. Includes all the supported tokens for the chain.
 */
export interface AcrossChainConfig {
    chainId: TargetChainId;
    tokens: {
        [name: string]: string | undefined;
    };
}
export declare const ACROSS_TOKEN_MAPPING: Partial<Record<TargetChainId, AcrossChainConfig>>;
