import Long from "long"; import _m0 from "protobufjs/minimal"; import { Allowance, TokenPair } from "./erc20"; export declare const protobufPackage = "cosmos.evm.erc20.v1"; /** GenesisState defines the module's genesis state. */ export interface GenesisState { /** params are the erc20 module parameters at genesis */ params: Params | undefined; /** token_pairs is a slice of the registered token pairs (mappings) at genesis */ tokenPairs: TokenPair[]; /** allowances is a slice of the registered allowances at genesis */ allowances: Allowance[]; /** native_precompiles is a slice of registered native precompiles at genesis */ nativePrecompiles: string[]; /** dynamic_precompiles is a slice of registered dynamic precompiles at genesis */ dynamicPrecompiles: string[]; } /** Params defines the erc20 module params */ export interface Params { /** * enable_erc20 is the parameter to enable the conversion of Cosmos coins <--> * ERC20 tokens. */ enableErc20: boolean; /** * permissionless_registration is the parameter that allows ERC20s to be * permissionlessly registered to be converted to bank tokens and vice versa */ permissionlessRegistration: boolean; } export declare const GenesisState: { encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; create(base?: DeepPartial): GenesisState; fromPartial(object: DeepPartial): GenesisState; }; export declare const Params: { encode(message: Params, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; create(base?: DeepPartial): Params; fromPartial(object: DeepPartial): Params; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};