import { Network } from "../types";
export declare const NETWORKS: Network[];
export declare const NETWORKS_MAPPING: {
    [chainId: number]: Network;
};
export declare const isNetworkSupported: (chainID: number) => boolean;
export declare const foundNetwork: (chainID: number) => Network | undefined;
export declare const mainnetChains: Network[];
export declare const DEFAULT_ENDPOINT: {
    [chainID: number]: string;
};
