export declare type JSONValue = null | string | number | boolean | { [x: string]: JSONValue; } | Array; export declare type Network = 'mainnet' | 'testnet'; export declare type TestnetMagic = string;