import type { CoinKey } from '../tokens/base.js';
import type { ChainKey } from './base.js';
export declare enum ChainType {
    EVM = "EVM",
    SVM = "SVM",
    MVM = "MVM",
    UTXO = "UTXO"
}
export interface _Chain {
    key: ChainKey;
    chainType: ChainType;
    name: string;
    coin: CoinKey;
    id: number;
    mainnet: boolean;
    logoURI?: string;
    faucetUrls?: string[];
}
//# sourceMappingURL=Chain.d.ts.map