import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; import { BinaryReader, BinaryWriter } from "../../../binary"; /** GenesisState defines the crisis module's genesis state. */ export interface GenesisState { /** * constant_fee is the fee used to verify the invariant in the crisis * module. */ constantFee: Coin | undefined; } export interface GenesisStateProtoMsg { typeUrl: "/cosmos.crisis.v1beta1.GenesisState"; value: Uint8Array; } /** GenesisState defines the crisis module's genesis state. */ export interface GenesisStateAmino { /** * constant_fee is the fee used to verify the invariant in the crisis * module. */ constant_fee?: CoinAmino | undefined; } export interface GenesisStateAminoMsg { type: "cosmos-sdk/GenesisState"; value: GenesisStateAmino; } /** GenesisState defines the crisis module's genesis state. */ export interface GenesisStateSDKType { constant_fee: CoinSDKType | undefined; } export declare const GenesisState: { typeUrl: string; aminoType: string; encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromPartial(object: Partial): GenesisState; fromAmino(object: GenesisStateAmino): GenesisState; toAmino(message: GenesisState): GenesisStateAmino; fromAminoMsg(object: GenesisStateAminoMsg): GenesisState; toAminoMsg(message: GenesisState): GenesisStateAminoMsg; fromProtoMsg(message: GenesisStateProtoMsg): GenesisState; toProto(message: GenesisState): Uint8Array; toProtoMsg(message: GenesisState): GenesisStateProtoMsg; };