/**
 * Ethereum hard fork name
 */
export declare type Hardfork = 'byzantium' | 'constantinople' | 'petersburg' | 'istanbul';
/**
 * Specifies the block to operate on.
 */
export declare type Tag = 'earliest' | 'latest' | 'pending';
