import _m0 from "protobufjs/minimal"; import { AccountID } from "./basic_types"; export declare const protobufPackage = "proto"; /** * Mark an account as deleted, moving all its current hbars to another account. It will remain in * the ledger, marked as deleted, until it expires. Transfers into it a deleted account fail. But a * deleted account can still have its expiration extended in the normal way. */ export interface CryptoDeleteTransactionBody { /** The account ID which will receive all remaining hbars */ transferAccountID: AccountID | undefined; /** The account ID which should be deleted */ deleteAccountID: AccountID | undefined; } export declare const CryptoDeleteTransactionBody: { encode(message: CryptoDeleteTransactionBody, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): CryptoDeleteTransactionBody; fromJSON(object: any): CryptoDeleteTransactionBody; toJSON(message: CryptoDeleteTransactionBody): unknown; create(base?: DeepPartial): CryptoDeleteTransactionBody; fromPartial(object: DeepPartial): CryptoDeleteTransactionBody; }; 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=crypto_delete.d.ts.map