import { SupportedChainsType } from './chains'; declare type AddressMap = { [chainId: number]: string; }; declare type ChainAddresses = { factoryAddress: string; multicallAddress: string; quoterAddress: string; nonfungiblePositionManagerAddress?: string; routerAddress: string; }; export declare const THE_ADDRESSES: AddressMap; export declare const V1_FACTORY_ADDRESSES: AddressMap; export declare const V1_ROUTER_ADDRESSES: AddressMap; export declare const CHAIN_TO_ADDRESSES_MAP: Record; export declare const FUSION_FACTORY_ADDRESSES: AddressMap; export declare const MULTICALL_ADDRESSES: AddressMap; export declare const FUSION_QUOTER_ADDRESSES: AddressMap; export declare const FUSION_ROUTER_ADDRESSES: AddressMap; export declare const NONFUNGIBLE_POSITION_MANAGER_ADDRESSES: AddressMap; export declare const ROUTER_V1_ADDRESSES: (chainId: SupportedChainsType) => string; export {};