import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "xpla.offchain.auth"; /** MsgSignData defines an arbitrary, general-purpose, off-chain message */ export interface MsgSignData { /** signer is the bech32 representation of the signer's account address */ signer: string; /** data represents the raw bytes of the content that is signed (text, json, etc) */ data: Uint8Array; } /** ListOfMsgSignData defines a list of MsgSignData, used to marshal and unmarshal them in a clean way */ export interface ListOfMsgSignData { /** msgs is a list of messages */ msgs: MsgSignData[]; } export declare const MsgSignData: { encode(message: MsgSignData, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MsgSignData; fromJSON(object: any): MsgSignData; toJSON(message: MsgSignData): unknown; create(base?: DeepPartial): MsgSignData; fromPartial(object: DeepPartial): MsgSignData; }; export declare const ListOfMsgSignData: { encode(message: ListOfMsgSignData, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ListOfMsgSignData; fromJSON(object: any): ListOfMsgSignData; toJSON(message: ListOfMsgSignData): unknown; create(base?: DeepPartial): ListOfMsgSignData; fromPartial(object: DeepPartial): ListOfMsgSignData; }; 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 {};