import _m0 from "protobufjs/minimal"; import { AccountID } from "./basic_types"; export declare const protobufPackage = "proto"; /** * At consensus, deletes a livehash associated to the given account. The transaction must be signed * by either the key of the owning account, or at least one of the keys associated to the livehash. */ export interface CryptoDeleteLiveHashTransactionBody { /** The account owning the livehash */ accountOfLiveHash: AccountID | undefined; /** The SHA-384 livehash to delete from the account */ liveHashToDelete: Uint8Array; } export declare const CryptoDeleteLiveHashTransactionBody: { encode(message: CryptoDeleteLiveHashTransactionBody, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): CryptoDeleteLiveHashTransactionBody; fromJSON(object: any): CryptoDeleteLiveHashTransactionBody; toJSON(message: CryptoDeleteLiveHashTransactionBody): unknown; create(base?: DeepPartial): CryptoDeleteLiveHashTransactionBody; fromPartial(object: DeepPartial): CryptoDeleteLiveHashTransactionBody; }; 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_live_hash.d.ts.map