import { EthNftTransferEventPaginationOptions } from "@haechi-labs/henesis-wallet-core/lib/events"; import { EventStatus, TransferType } from "@haechi-labs/henesis-wallet-core/lib/__generate__/eth"; export declare class GetNftTransfersOption { nftId: number; tokenName: string; tokenOnchainId: string; depositAddressId: string; walletId: string; transactionId: string; transactionHash: string; status: EventStatus; transferType: TransferType; updatedAtGte: string; updatedAtLt: string; size: number; page: number; static toSDKOption(option: GetNftTransfersOption): EthNftTransferEventPaginationOptions; }