import _m0 from "protobufjs/minimal"; import { TokenID } from "./basic_types"; export declare const protobufPackage = "proto"; /** * Marks a token as deleted, though it will remain in the ledger. * The operation must be signed by the specified Admin Key of the Token. If * admin key is not set, Transaction will result in TOKEN_IS_IMMUTABlE. * Once deleted update, mint, burn, wipe, freeze, unfreeze, grant kyc, revoke * kyc and token transfer transactions will resolve to TOKEN_WAS_DELETED. */ export interface TokenDeleteTransactionBody { /** * The token to be deleted. If invalid token is specified, transaction will * result in INVALID_TOKEN_ID */ token: TokenID | undefined; } export declare const TokenDeleteTransactionBody: { encode(message: TokenDeleteTransactionBody, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): TokenDeleteTransactionBody; fromJSON(object: any): TokenDeleteTransactionBody; toJSON(message: TokenDeleteTransactionBody): unknown; create(base?: DeepPartial): TokenDeleteTransactionBody; fromPartial(object: DeepPartial): TokenDeleteTransactionBody; }; 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=token_delete.d.ts.map