export interface NetworkData {
    network: string;
    ingress: string;
    infura: string;
    etherscan: string;
    wbtcKYCServer: string;
    ethNetwork: string;
    ethNetworkLabel: string;
    ethNetworkId: number;
    contracts: [{
        darknodeRegistry: string;
        orderbook: string;
        renExTokens: string;
        renExBalances: string;
        renExSettlement: string;
        wyre: string;
    }];
    tokens: {
        DGX: string;
        TUSD: string;
        REN: string;
        OMG: string;
        ZRX: string;
        WBTC: string;
    };
}
export declare const networks: {
    mainnet: NetworkData;
    testnet: NetworkData;
};
