import _m0 from "protobufjs/minimal";
import { AccountID, TokenID } from "./basic_types";
export declare const protobufPackage = "proto";
/**
* Dissociates the provided account with the provided tokens. Must be signed by the provided
* Account's key.
* If the provided account is not found, the transaction will resolve to INVALID_ACCOUNT_ID.
* If the provided account has been deleted, the transaction will resolve to ACCOUNT_DELETED.
* If any of the provided tokens is not found, the transaction will resolve to INVALID_TOKEN_REF.
* If any of the provided tokens has been deleted, the transaction will resolve to TOKEN_WAS_DELETED.
* If an association between the provided account and any of the tokens does not exist, the
* transaction will resolve to TOKEN_NOT_ASSOCIATED_TO_ACCOUNT.
* If a token has not been deleted and has not expired, and the user has a nonzero balance, the
* transaction will resolve to TRANSACTION_REQUIRES_ZERO_TOKEN_BALANCES.
* If a fungible token has expired, the user can disassociate even if their token balance is
* not zero.
* If a non fungible token has expired, the user can not disassociate if their token
* balance is not zero. The transaction will resolve to TRANSACTION_REQUIRED_ZERO_TOKEN_BALANCES.
* On success, associations between the provided account and tokens are removed.
*/
export interface TokenDissociateTransactionBody {
/** The account to be dissociated with the provided tokens */
account: AccountID | undefined;
/** The tokens to be dissociated with the provided account */
tokens: TokenID[];
}
export declare const TokenDissociateTransactionBody: {
encode(message: TokenDissociateTransactionBody, writer?: _m0.Writer): _m0.Writer;
decode(input: _m0.Reader | Uint8Array, length?: number): TokenDissociateTransactionBody;
fromJSON(object: any): TokenDissociateTransactionBody;
toJSON(message: TokenDissociateTransactionBody): unknown;
create(base?: DeepPartial): TokenDissociateTransactionBody;
fromPartial(object: DeepPartial): TokenDissociateTransactionBody;
};
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_dissociate.d.ts.map