export declare enum FlipResult { HEAD = 0, TAIL = 1 } export declare type NETWORK_INFO = { url: string; chainId: string; gasPriceUrl: string; }; export declare type NETWORK = 'mainnet' | 'classic' | 'testnet' | 'localterra'; export declare type NetworkData = { [key in NETWORK]: NETWORK_INFO; }; export declare type BetDto = { address: string; flip: FlipResult; amount: string; signature: string; };