import { IChainData } from 'evm-chains';
export interface IChainExtraData {
    chainId: number;
    blockExplorerUrls: string[];
    rpc?: string[];
}
export interface IChainDataExtended extends IChainData, Omit<IChainExtraData, 'rpc'> {
    blockExplorerUrls: string[];
}
export interface IAddEthereumChainParameter {
    chainId: string;
    chainName: string;
    nativeCurrency: {
        name: string;
        symbol: string;
        decimals: number;
    };
    rpcUrls: string[];
    blockExplorerUrls?: string[];
    iconUrls?: string[];
}
//# sourceMappingURL=types.d.ts.map