import { Coin, CoinSDKType } from "../../base/v1beta1/coin"; import { BinaryReader, BinaryWriter } from "../../../binary"; export declare const protobufPackage = "cosmos.crisis.v1beta1"; /** 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; } /** GenesisState defines the crisis module's genesis state. */ export interface GenesisStateSDKType { constant_fee: CoinSDKType | undefined; } export declare const GenesisState: { typeUrl: string; encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial & { constantFee?: Coin & { denom: string; amount: string; } & Record, never>; } & Record, never>>(object: I): GenesisState; };