import * as _m0 from "protobufjs/minimal"; import { Rpc } from "../../../helpers"; export declare const protobufPackage = "cosmos.crisis.v1beta1"; /** MsgVerifyInvariant represents a message to verify a particular invariance. */ export interface MsgVerifyInvariant { sender: string; invariantModuleName: string; invariantRoute: string; } /** MsgVerifyInvariant represents a message to verify a particular invariance. */ export interface MsgVerifyInvariantSDKType { sender: string; invariant_module_name: string; invariant_route: string; } /** MsgVerifyInvariantResponse defines the Msg/VerifyInvariant response type. */ export interface MsgVerifyInvariantResponse { } /** MsgVerifyInvariantResponse defines the Msg/VerifyInvariant response type. */ export interface MsgVerifyInvariantResponseSDKType { } export declare const MsgVerifyInvariant: { encode(message: MsgVerifyInvariant, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MsgVerifyInvariant; fromJSON(object: any): MsgVerifyInvariant; toJSON(message: MsgVerifyInvariant): unknown; fromPartial, never>>(object: I): MsgVerifyInvariant; fromSDK(object: MsgVerifyInvariantSDKType): MsgVerifyInvariant; toSDK(message: MsgVerifyInvariant): MsgVerifyInvariantSDKType; }; export declare const MsgVerifyInvariantResponse: { encode(_: MsgVerifyInvariantResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MsgVerifyInvariantResponse; fromJSON(_: any): MsgVerifyInvariantResponse; toJSON(_: MsgVerifyInvariantResponse): unknown; fromPartial, never>>(_: I): MsgVerifyInvariantResponse; fromSDK(_: MsgVerifyInvariantResponseSDKType): MsgVerifyInvariantResponse; toSDK(_: MsgVerifyInvariantResponse): MsgVerifyInvariantResponseSDKType; }; /** Msg defines the bank Msg service. */ export interface Msg { /** VerifyInvariant defines a method to verify a particular invariance. */ VerifyInvariant(request: MsgVerifyInvariant): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); VerifyInvariant(request: MsgVerifyInvariant): Promise; }