import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; //#region src/proto/gno/bank.d.ts declare const protobufPackage = "gno.bank"; /** MsgSend is the fund transfer tx message */ interface MsgSend { /** the bech32 address of the fund sender */ from_address: string; /** the bech32 address of the fund receiver */ to_address: string; /** the denomination and amount of fund sent ("") */ amount: string; } declare const MsgSend: MessageFns; type Builtin = Date | Function | Uint8Array | string | number | boolean | bigint | undefined; type DeepPartial = T extends Builtin ? T : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial } : Partial; type KeysOfUnion = T extends T ? keyof T : never; type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact } & { [K in Exclude>]: never }; interface MessageFns { encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; fromJSON(object: any): T; toJSON(message: T): unknown; create, I>>(base?: I): T; fromPartial, I>>(object: I): T; } //#endregion export { MsgSend }; //# sourceMappingURL=bank.d.mts.map