import { Address } from "../core/address"; import { TokenTransfer } from "../core/tokens"; export declare type NativeTokenTransferInput = { receiver: Address; nativeAmount?: bigint; data?: Uint8Array; }; export declare type CustomTokenTransferInput = { receiver: Address; tokenTransfers: TokenTransfer[]; }; export declare type CreateTransferTransactionInput = { receiver: Address; nativeAmount?: bigint; tokenTransfers?: TokenTransfer[]; data?: Uint8Array; };