import _m0 from "protobufjs/minimal"; import { SignatureMap } from "./basic_types"; export declare const protobufPackage = "proto"; export interface SignedTransaction { /** TransactionBody serialized into bytes, which needs to be signed */ bodyBytes: Uint8Array; /** The signatures on the body with the new format, to authorize the transaction */ sigMap: SignatureMap | undefined; } export declare const SignedTransaction: { encode(message: SignedTransaction, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): SignedTransaction; fromJSON(object: any): SignedTransaction; toJSON(message: SignedTransaction): unknown; create(base?: DeepPartial): SignedTransaction; fromPartial(object: DeepPartial): SignedTransaction; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends { $case: string; } ? { [K in keyof Omit]?: DeepPartial; } & { $case: T["$case"]; } : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {}; //# sourceMappingURL=transaction_contents.d.ts.map