import Long from 'long'; import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "cosmos.crisis.v1beta1"; /** MsgVerifyInvariant represents a message to verify a particular invariance. */ export interface MsgVerifyInvariant { $type: 'cosmos.crisis.v1beta1.MsgVerifyInvariant'; sender: string; invariantModuleName: string; invariantRoute: string; } /** MsgVerifyInvariantResponse defines the Msg/VerifyInvariant response type. */ export interface MsgVerifyInvariantResponse { $type: 'cosmos.crisis.v1beta1.MsgVerifyInvariantResponse'; } export declare const MsgVerifyInvariant: { $type: "cosmos.crisis.v1beta1.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; }; export declare const MsgVerifyInvariantResponse: { $type: "cosmos.crisis.v1beta1.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; }; /** 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; } interface Rpc { request(service: string, method: string, data: Uint8Array): Promise; } declare type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export declare type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in Exclude]?: DeepPartial; } : Partial; declare type KeysOfUnion = T extends T ? keyof T : never; export declare type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude | '$type'>]: never; }; export {};