import _m0 from "protobufjs/minimal"; import { ContractID, FileID } from "./basic_types"; export declare const protobufPackage = "proto"; /** * Undelete a file or smart contract that was deleted by SystemDelete; requires a Hedera * administrative multisignature. */ export interface SystemUndeleteTransactionBody { id?: { $case: "fileID"; fileID: FileID; } | { $case: "contractID"; contractID: ContractID; } | undefined; } export declare const SystemUndeleteTransactionBody: { encode(message: SystemUndeleteTransactionBody, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): SystemUndeleteTransactionBody; fromJSON(object: any): SystemUndeleteTransactionBody; toJSON(message: SystemUndeleteTransactionBody): unknown; create(base?: DeepPartial): SystemUndeleteTransactionBody; fromPartial(object: DeepPartial): SystemUndeleteTransactionBody; }; 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=system_undelete.d.ts.map