import _m0 from "protobufjs/minimal"; import { TokenID } from "./basic_types"; export declare const protobufPackage = "proto"; /** * Pauses the Token from being involved in any kind of Transaction until it is unpaused. * Must be signed with the Token's pause key. * If the provided token is not found, the transaction will resolve to INVALID_TOKEN_ID. * If the provided token has been deleted, the transaction will resolve to TOKEN_WAS_DELETED. * If no Pause Key is defined, the transaction will resolve to TOKEN_HAS_NO_PAUSE_KEY. * Once executed the Token is marked as paused and will be not able to be a part of any transaction. * The operation is idempotent - becomes a no-op if the Token is already Paused. */ export interface TokenPauseTransactionBody { /** The token to be paused. */ token: TokenID | undefined; } export declare const TokenPauseTransactionBody: { encode(message: TokenPauseTransactionBody, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): TokenPauseTransactionBody; fromJSON(object: any): TokenPauseTransactionBody; toJSON(message: TokenPauseTransactionBody): unknown; create(base?: DeepPartial): TokenPauseTransactionBody; fromPartial(object: DeepPartial): TokenPauseTransactionBody; }; 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_pause.d.ts.map