import { CHAIN_IDS_OPTS, IContract, ISupportedBlockchainNetwork } from '../..';
export interface IBlockchainNetwork {
    name: string;
    contracts: {
        [key: string]: IContract;
    };
    errorKeywords?: {
        tooFewGasUnits?: string[];
        tooMuchGasUnits?: string[];
    };
}
export type IWalletNetworkChain = keyof typeof CHAIN_IDS_OPTS;
export declare const WALLET_NETWORK_CHAIN_IDS: (index: ISupportedBlockchainNetwork) => number;
export declare const WALLET_NETWORK_CHAIN_NAME: (index: number) => IWalletNetworkChain;
